python3Packages.progress: 1.6 -> 1.6.1

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-09 19:02:21 +02:00
parent a8c8c2469c
commit 0694366b2a
@@ -2,21 +2,26 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
python,
}:
buildPythonPackage rec {
version = "1.6";
format = "setuptools";
version = "1.6.1";
pname = "progress";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "c9c86e98b5c03fa1fe11e3b67c1feda4788b8d0fe7336c2ff7d5644ccfba34cd";
hash = "sha256-wbpxn4Ys6IUjKnWeq0eXH+dN/Hu3arilHvWUC601CGw=";
};
build-system = [ setuptools ];
checkPhase = ''
runHook preCheck
${python.interpreter} test_progress.py
runHook postCheck
'';
meta = with lib; {