Merge pull request #62234 from hyphon81/add/pysptk-add
pythonPackages.pysptk: init at 0.1.16
This commit is contained in:
commit
1ec32bda1a
37
pkgs/development/python-modules/pysptk/default.nix
Normal file
37
pkgs/development/python-modules/pysptk/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage, fetchPypi
|
||||||
|
, numpy, scipy, cython, six, decorator
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pysptk";
|
||||||
|
version = "0.1.17";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "aa8bd2ae84bfe72e9015ccb69eb3b687bc64fad6139ae0b327fe07918e1e28ff";
|
||||||
|
};
|
||||||
|
|
||||||
|
PYSPTK_BUILD_VERSION = 0;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cython
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
|
scipy
|
||||||
|
six
|
||||||
|
decorator
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests in the PyPI tarball
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A python wrapper for Speech Signal Processing Toolkit (SPTK)";
|
||||||
|
homepage = https://pysptk.readthedocs.io/en/latest/;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ hyphon81 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2340,6 +2340,8 @@ in {
|
|||||||
|
|
||||||
pyspf = callPackage ../development/python-modules/pyspf { };
|
pyspf = callPackage ../development/python-modules/pyspf { };
|
||||||
|
|
||||||
|
pysptk = callPackage ../development/python-modules/pysptk { };
|
||||||
|
|
||||||
pysrim = callPackage ../development/python-modules/pysrim { };
|
pysrim = callPackage ../development/python-modules/pysrim { };
|
||||||
|
|
||||||
pysrt = callPackage ../development/python-modules/pysrt { };
|
pysrt = callPackage ../development/python-modules/pysrt { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user