Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pysptk / default.nix
blob478595c1bfc59777a4d09894b90d78a1d67c98b9
1 { lib
2 , buildPythonPackage, fetchPypi
3 , numpy, scipy, cython, six, decorator
4 }:
6 buildPythonPackage rec {
7   pname = "pysptk";
8   version = "0.1.18";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "34c5ccc40c9e177cfd764daa9f7635c4c1e648e14ce78ba975537dae5a14c4e4";
13   };
15   PYSPTK_BUILD_VERSION = 0;
17   nativeBuildInputs = [
18     cython
19   ];
21   propagatedBuildInputs = [
22     numpy
23     scipy
24     six
25     decorator
26   ];
28   # No tests in the PyPI tarball
29   doCheck = false;
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   };