ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pysptk / default.nix
blobe229648bc75da5c05a946084a3f8c66742f927a1
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , cython
5 , decorator
6 , fetchPypi
7 , numpy
8 , pytestCheckHook
9 , pythonOlder
10 , scipy
11 , six
14 buildPythonPackage rec {
15   pname = "pysptk";
16   version = "0.1.21";
17   format = "setuptools";
19   disabled = pythonOlder "3.7";
21   src = fetchPypi {
22     inherit pname version;
23     hash = "sha256-AZUDI9AL57tXz7VzPGF9uEeKW4/6JsaBUiFkigl640Q=";
24   };
26   PYSPTK_BUILD_VERSION = 0;
28   nativeBuildInputs = [
29     cython
30   ];
32   propagatedBuildInputs = [
33     decorator
34     numpy
35     scipy
36     six
37   ];
39   # Tests are not part of the PyPI releases
40   doCheck = false;
42   pythonImportsCheck = [
43     "pysptk"
44   ];
46   meta = with lib; {
47     broken = stdenv.isDarwin;
48     description = "Wrapper for Speech Signal Processing Toolkit (SPTK)";
49     homepage = "https://pysptk.readthedocs.io/";
50     license = licenses.mit;
51     maintainers = with maintainers; [ hyphon81 ];
52   };