blob: a84a3f090544e20764b47b5cae1009ff4ab4da25 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
cython,
decorator,
fetchPypi,
numpy,
scipy,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "pysptk";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-eLHJM4v3laQc3D/wP81GmcQBwyP1RjC7caGXEAeNCz8=";
};
PYSPTK_BUILD_VERSION = 0;
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [
decorator
numpy
scipy
setuptools
six
];
# Tests are not part of the PyPI releases
doCheck = false;
pythonImportsCheck = [ "pysptk" ];
meta = {
description = "Wrapper for Speech Signal Processing Toolkit (SPTK)";
homepage = "https://pysptk.readthedocs.io/";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|