1{ lib
2, buildPythonPackage, fetchPypi
3, numpy, scipy, cython, six, decorator
4}:
5
6buildPythonPackage rec {
7 pname = "pysptk";
8 version = "0.1.18";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "34c5ccc40c9e177cfd764daa9f7635c4c1e648e14ce78ba975537dae5a14c4e4";
13 };
14
15 PYSPTK_BUILD_VERSION = 0;
16
17 nativeBuildInputs = [
18 cython
19 ];
20
21 propagatedBuildInputs = [
22 numpy
23 scipy
24 six
25 decorator
26 ];
27
28 # No tests in the PyPI tarball
29 doCheck = false;
30
31 meta = with lib; {
32 description = "A python wrapper for Speech Signal Processing Toolkit (SPTK)";
33 homepage = "https://pysptk.readthedocs.io/en/latest/";
34 license = licenses.mit;
35 maintainers = with maintainers; [ hyphon81 ];
36 };
37}