depot/third_party/nixpkgs/pkgs/development/python-modules/pysptk/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

49 lines
878 B
Nix

{
lib,
stdenv,
buildPythonPackage,
cython,
decorator,
fetchPypi,
numpy,
pythonOlder,
scipy,
six,
}:
buildPythonPackage rec {
pname = "pysptk";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-eLHJM4v3laQc3D/wP81GmcQBwyP1RjC7caGXEAeNCz8=";
};
PYSPTK_BUILD_VERSION = 0;
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [
decorator
numpy
scipy
six
];
# Tests are not part of the PyPI releases
doCheck = false;
pythonImportsCheck = [ "pysptk" ];
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
description = "Wrapper for Speech Signal Processing Toolkit (SPTK)";
homepage = "https://pysptk.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};
}