32 lines
637 B
Nix
32 lines
637 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
numpy,
|
||
|
cython,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyworld";
|
||
|
version = "0.3.4";
|
||
|
format = "setuptools";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-EGxw7np9jJukiNgCLyAzcGkppA8CZCVrjofaWquYMDo=";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|