python310Packages.progressbar2: use pytestCheckHook

- add pythonImportsCheck
- disable on older Python releases
This commit is contained in:
Fabian Affolter 2022-10-30 10:05:03 +01:00 committed by GitHub
parent c2e1495fd7
commit 170c46ce2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,26 +1,44 @@
{ lib
, python
, buildPythonPackage
, fetchPypi
, freezegun
, pytestCheckHook
, python-utils
, pythonOlder
}:
buildPythonPackage rec {
pname = "progressbar2";
version = "4.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-E5OSL8tkWYlErUV1afvrSzrBie9Qta25zvMoTofjlM4=";
hash = "sha256-E5OSL8tkWYlErUV1afvrSzrBie9Qta25zvMoTofjlM4=";
};
propagatedBuildInputs = [ python-utils ];
postPatch = ''
sed -i "/-cov/d" pytest.ini
'';
pythonImportsCheck = [ "progressbar" ];
propagatedBuildInputs = [
python-utils
];
checkInputs = [
freezegun
pytestCheckHook
];
pythonImportsCheck = [
"progressbar"
];
meta = with lib; {
homepage = "https://progressbar-2.readthedocs.io/en/latest/";
description = "Text progressbar library for python";
description = "Text progressbar library";
homepage = "https://progressbar-2.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ashgillman turion ];
};