Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 38 lines 746 B view raw
1{ lib 2, buildPythonPackage, fetchPypi 3, numpy, scipy, cython, six, decorator 4}: 5 6buildPythonPackage rec { 7 pname = "pysptk"; 8 version = "0.1.17"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "aa8bd2ae84bfe72e9015ccb69eb3b687bc64fad6139ae0b327fe07918e1e28ff"; 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 broken = true; 37 }; 38}