depot/third_party/nixpkgs/pkgs/development/python-modules/pyworld/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 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 ];
};
}