blob: 680620637c324feaeb9acdd2cc512a99a5d40f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
fetchurl,
buildPythonPackage,
numpy,
}:
buildPythonPackage rec {
pname = "sphfile";
version = "1.0.3";
format = "setuptools";
src = fetchurl {
url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz";
sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0";
};
propagatedBuildInputs = [ numpy ];
doCheck = false;
meta = {
description = "Numpy-based NIST SPH audio-file reader";
homepage = "https://github.com/mcfletch/sphfile";
license = lib.licenses.mit;
maintainers = [ ];
platforms = lib.platforms.unix;
};
}
|