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