1{ lib, fetchurl, buildPythonPackage, numpy }: 2 3buildPythonPackage rec { 4 pname = "sphfile"; 5 version = "1.0.3"; 6 7 src = fetchurl { 8 url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz"; 9 sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0"; 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}