python311Packages.tqdm-multiprocess: init at 0.0.11

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
Ihar Hrachyshka
2025-01-30 21:26:22 -05:00
parent 33f5f7a0e5
commit 3904ee40f6
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
tqdm,
colorama,
}:
buildPythonPackage {
pname = "tqdm-multiprocess";
version = "0.0.11";
pyproject = true;
src = fetchFromGitHub {
owner = "EleutherAI";
repo = "tqdm-multiprocess";
rev = "fccefc473595055bf3a5e74bcf8a75b3a9517638";
hash = "sha256-nQeFPwF5OasOYrVs7kLG/Uz6pf1FKxar4ygggo8s4ZM=";
};
build-system = [
setuptools-scm
];
dependencies = [
colorama
tqdm
];
pythonImportsCheck = [
"tqdm_multiprocess"
];
meta = {
description = "Support multiple worker processes, each with multiple tqdm progress bars, displaying them cleanly through the main process";
homepage = "https://github.com/EleutherAI/tqdm-multiprocess";
license = [ lib.licenses.mit ];
maintainers = [ lib.maintainers.booxter ];
};
}
+2
View File
@@ -16401,6 +16401,8 @@ self: super: with self; {
tqdm = callPackage ../development/python-modules/tqdm { };
tqdm-multiprocess = callPackage ../development/python-modules/tqdm-multiprocess { };
traceback2 = callPackage ../development/python-modules/traceback2 { };
tracerite = callPackage ../development/python-modules/tracerite { };