depot/third_party/nixpkgs/pkgs/development/python-modules/pyworld/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

33 lines
617 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, cython
}:
buildPythonPackage rec {
pname = "pyworld";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-Zo0JhCw8+nSx9u2r2wBYpkwE+c8XuTiD5tqBHhIErU0=";
};
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 ];
};
}