python3Packages.enlighten: init at 1.10.1

rlvm
Simon Bruder 2021-07-21 20:32:35 +02:00
parent 35e29813a6
commit 018cd5e5fb
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 31 additions and 0 deletions

View File

@ -21,6 +21,8 @@
{
deezer-py = callPythonPackage ./python-modules/deezer-py { };
enlighten = callPythonPackage ./python-modules/enlighten { };
prefixed = callPythonPackage ./python-modules/prefixed { };
};
};

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, blessed
, prefixed
}:
buildPythonPackage rec {
pname = "enlighten";
version = "1.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "1159iqivln12sfbf0bc2iyaf8ic7nj1694nnsp7fsjinhrjr349k";
};
propagatedBuildInputs = [
blessed
prefixed
];
meta = with lib; {
description = "A progress Bar for Python Console Apps";
homepage = "https://python-enlighten.readthedocs.io";
license = licenses.mpl20;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}