python3.pkgs.pyworld: init at 0.2.12

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Jörg Thalheim 2020-12-05 10:28:11 +01:00
parent b1c006f055
commit 996a8eb88e
No known key found for this signature in database
GPG key ID: B3F5D81B0C6967C4
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, cython
}:
buildPythonPackage rec {
pname = "pyworld";
version = "0.2.12";
src = fetchPypi {
inherit pname version;
sha256 = "896c910696975855578d855f490f94d7a57119e0a75f7f15e11fdf58ba891627";
};
nativeBuildInputs = [
cython
];
propagatedBuildInputs = [
numpy
];
pythonImportsCheck = [ "pyworld" ];
meta = with lib; {
description = "PyWorld is a Python wrapper for WORLD vocoder";
homepage = https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder;
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};
}

View file

@ -6507,6 +6507,8 @@ in {
});
in if isPy3k then pyxattr' else pyxattr_2;
pyworld = callPackage ../development/python-modules/pyworld { };
pyx = callPackage ../development/python-modules/pyx { };
pyxdg = callPackage ../development/python-modules/pyxdg { };