Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchurl, 4 buildPythonPackage, 5 numpy, 6}: 7 8buildPythonPackage rec { 9 pname = "sphfile"; 10 version = "1.0.3"; 11 format = "setuptools"; 12 13 src = fetchurl { 14 url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz"; 15 sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0"; 16 }; 17 18 propagatedBuildInputs = [ numpy ]; 19 20 doCheck = false; 21 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 }; 29}