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