python310Packages.resampy: switch to pytestCheckHook

- add pythonImportsCheck
- remove coverage
- disable on older Python releases
This commit is contained in:
Fabian Affolter 2022-06-30 23:13:40 +02:00 committed by GitHub
parent 08173c03f0
commit 30ab1697a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,38 +1,52 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, pytest-cov
, numpy
, scipy
, cython
, fetchFromGitHub
, numba
, six
, numpy
, pytestCheckHook
, pythonOlder
, scipy
}:
buildPythonPackage rec {
pname = "resampy";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
# No tests in PyPi Archive
src = fetchFromGitHub {
owner = "bmcfee";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-OVj5dQafIoKeA04yTGBKTinldMjEccxrdiuRFIvRzcE=";
hash = "sha256-OVj5dQafIoKeA04yTGBKTinldMjEccxrdiuRFIvRzcE=";
};
checkInputs = [ pytest pytest-cov ];
propagatedBuildInputs = [ numpy scipy cython numba six ];
propagatedBuildInputs = [
numpy
cython
numba
];
checkPhase = ''
pytest tests
checkInputs = [
pytestCheckHook
scipy
];
postPatch = ''
substituteInPlace setup.cfg \
--replace " --cov-report term-missing --cov resampy --cov-report=xml" ""
'';
meta = with lib; {
homepage = "https://github.com/bmcfee/resampy";
description = "Efficient signal resampling";
license = licenses.isc;
};
pythonImportsCheck = [
"resampy"
];
meta = with lib; {
description = "Efficient signal resampling";
homepage = "https://github.com/bmcfee/resampy";
license = licenses.isc;
maintainers = with maintainers; [ ];
};
}