nixpkgs/pkgs/development/python-modules/pyworld/default.nix
Jörg Thalheim 996a8eb88e
python3.pkgs.pyworld: init at 0.2.12
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-27 10:59:56 +01:00

34 lines
631 B
Nix

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