python3Packages.enlighten: init at 1.10.1
This commit is contained in:
parent
35e29813a6
commit
018cd5e5fb
|
@ -21,6 +21,8 @@
|
|||
{
|
||||
deezer-py = callPythonPackage ./python-modules/deezer-py { };
|
||||
|
||||
enlighten = callPythonPackage ./python-modules/enlighten { };
|
||||
|
||||
prefixed = callPythonPackage ./python-modules/prefixed { };
|
||||
};
|
||||
};
|
||||
|
|
29
python-modules/enlighten/default.nix
Normal file
29
python-modules/enlighten/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue