pythonPackages.progress: init at 1.4

This commit is contained in:
Chris Ostrouchov 2018-10-10 00:58:07 -04:00 committed by Frederik Rietdijk
parent 08d2c98e2b
commit 489d120ef5
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
version = "1.4";
pname = "progress";
src = fetchPypi {
inherit pname version;
sha256 = "5e2f9da88ed8236a76fffbee3ceefd259589cf42dfbc2cec2877102189fae58a";
};
# tests not packaged with pypi release
doCheck = false;
checkPhase = ''
${python.interpreter} test_progress.py
'';
meta = with stdenv.lib; {
homepage = https://github.com/verigak/progress/;
description = "Easy to use progress bars";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -428,6 +428,8 @@ in {
plantuml = callPackage ../tools/misc/plantuml { };
progress = callPackage ../development/python-modules/progress { };
pymysql = callPackage ../development/python-modules/pymysql { };
Pmw = callPackage ../development/python-modules/Pmw { };