1{ lib, fetchurl, buildPythonPackage, numpy }: 2 3buildPythonPackage rec { 4 pname = "sphfile"; 5 version = "1.0.0"; 6 name = pname + "-" + version; 7 8 src = fetchurl { 9 url = "mirror://pypi/s/sphfile/${name}.tar.gz"; 10 sha256 = "1ly9746xrzbiax9cxr5sxlg0wvf6fdxcrgwsqqxckk3wnqfypfrd"; 11 }; 12 13 propagatedBuildInputs = [ numpy ]; 14 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Numpy-based NIST SPH audio-file reader"; 19 homepage = https://github.com/mcfletch/sphfile; 20 license = licenses.mit; 21 maintainers = with maintainers; [ abbradar ]; 22 platforms = platforms.unix; 23 }; 24}