nixpkgs/pkgs/development/python-modules/progressbar2/default.nix
Fabian Affolter 170c46ce2b
python310Packages.progressbar2: use pytestCheckHook
- add pythonImportsCheck
- disable on older Python releases
2022-10-30 10:05:03 +01:00

46 lines
784 B
Nix

{ lib
, 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;
hash = "sha256-E5OSL8tkWYlErUV1afvrSzrBie9Qta25zvMoTofjlM4=";
};
postPatch = ''
sed -i "/-cov/d" pytest.ini
'';
propagatedBuildInputs = [
python-utils
];
checkInputs = [
freezegun
pytestCheckHook
];
pythonImportsCheck = [
"progressbar"
];
meta = with lib; {
description = "Text progressbar library";
homepage = "https://progressbar-2.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ashgillman turion ];
};
}