python3Packages.fastprogress: 1.0.5 -> 1.1.3

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 16:43:51 +01:00
parent 44075c9b55
commit 17d8ec757b
@@ -2,20 +2,27 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
fastcore,
numpy,
}:
buildPythonPackage rec {
pname = "fastprogress";
version = "1.0.5";
format = "setuptools";
version = "1.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-WMoWqYHwKSgE2QXy4AQq1gjXiL9svmq5a3HsSyBFOu8=";
hash = "sha256-L3Bxvrk84mHdtR1mskOoUXtCFWOgEHSY5Yhe0tkTb8o=";
};
propagatedBuildInputs = [ numpy ];
build-system = [ setuptools ];
dependencies = [
fastcore
numpy
];
# no real tests
doCheck = false;