python311Packages.tqdm-multiprocess: init at 0.0.11
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user