Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / sphfile / default.nix
blob79f7aa0739cddec7580b6fa6465d466cff9f0669
1 { lib, fetchurl, buildPythonPackage, numpy }:
3 buildPythonPackage rec {
4   pname = "sphfile";
5   version = "1.0.3";
7   src = fetchurl {
8     url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz";
9     sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0";
10   };
12   propagatedBuildInputs = [ numpy ];
14   doCheck = false;
16   meta = with lib; {
17     description = "Numpy-based NIST SPH audio-file reader";
18     homepage    = "https://github.com/mcfletch/sphfile";
19     license     = licenses.mit;
20     maintainers = with maintainers; [ abbradar ];
21     platforms   = platforms.unix;
22   };