Files
nixpkgs/pkgs/development/python-modules/sphfile/default.nix
phaer 978931902c maintainers: drop abbradar
Listed as maintainer for ~170 packages but last commit that made it to
master was 6786ceb in February 2022.

Unresponsive on PRs, such as i.e. #411522
2025-08-22 09:49:27 +02:00

30 lines
602 B
Nix

{
lib,
fetchurl,
buildPythonPackage,
numpy,
}:
buildPythonPackage rec {
pname = "sphfile";
version = "1.0.3";
format = "setuptools";
src = fetchurl {
url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz";
sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0";
};
propagatedBuildInputs = [ numpy ];
doCheck = false;
meta = with lib; {
description = "Numpy-based NIST SPH audio-file reader";
homepage = "https://github.com/mcfletch/sphfile";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.unix;
};
}