stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / sphfile / default.nix
blob806f39efa63b36cbf301af0fbae596a5ed97a35e
2   lib,
3   fetchurl,
4   buildPythonPackage,
5   numpy,
6 }:
8 buildPythonPackage rec {
9   pname = "sphfile";
10   version = "1.0.3";
11   format = "setuptools";
13   src = fetchurl {
14     url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz";
15     sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0";
16   };
18   propagatedBuildInputs = [ numpy ];
20   doCheck = false;
22   meta = with lib; {
23     description = "Numpy-based NIST SPH audio-file reader";
24     homepage = "https://github.com/mcfletch/sphfile";
25     license = licenses.mit;
26     maintainers = with maintainers; [ abbradar ];
27     platforms = platforms.unix;
28   };