Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 602 B view raw
1{ lib, fetchurl, buildPythonPackage, numpy }: 2 3buildPythonPackage rec { 4 pname = "sphfile"; 5 version = "1.0.1"; 6 7 src = fetchurl { 8 url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz"; 9 sha256 = "422b0704107b02ef3ca10e55ccdc80b0bb5ad8e2613b6442f8e2ea372c7cf5d8"; 10 }; 11 12 propagatedBuildInputs = [ numpy ]; 13 14 doCheck = false; 15 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 }; 23}