Merge pull request #176501 from r-ryantm/auto-update/python3.10-pysptk

python310Packages.pysptk: 0.1.20 -> 0.1.21
This commit is contained in:
Fabian Affolter 2022-06-06 16:49:53 +02:00 committed by GitHub
commit 9f16efef4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,26 @@
{ stdenv
, lib
, buildPythonPackage, fetchPypi
, numpy, scipy, cython, six, decorator
{ lib
, stdenv
, buildPythonPackage
, cython
, decorator
, fetchPypi
, numpy
, pytestCheckHook
, pythonOlder
, scipy
, six
}:
buildPythonPackage rec {
pname = "pysptk";
version = "0.1.20";
version = "0.1.21";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "29e8e6a76243f3be728d23450982bd9f916530634079252a490ba7182bef30ca";
hash = "sha256-AZUDI9AL57tXz7VzPGF9uEeKW4/6JsaBUiFkigl640Q=";
};
PYSPTK_BUILD_VERSION = 0;
@ -20,19 +30,23 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
decorator
numpy
scipy
six
decorator
];
# No tests in the PyPI tarball
# Tests are not part of the PyPI releases
doCheck = false;
pythonImportsCheck = [
"pysptk"
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "A python wrapper for Speech Signal Processing Toolkit (SPTK)";
homepage = "https://pysptk.readthedocs.io/en/latest/";
description = "Wrapper for Speech Signal Processing Toolkit (SPTK)";
homepage = "https://pysptk.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};