pythonPackages.progressbar2: move to separate file.

This commit is contained in:
Ashley Gillman
2018-01-16 18:46:30 +10:00
parent 99e035ac70
commit 19b3b16384
2 changed files with 29 additions and 22 deletions

View File

@@ -0,0 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, python-utils
}:
buildPythonPackage (rec {
name = "${pname}-${version}";
pname = "progressbar2";
version = "3.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "16r21cpjvv0spf4mymgpy7hx6977iy11k44n2w9kipwg4lhwh02k";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ python-utils ];
doCheck = false;
meta = with stdenv.lib; {
homepage = https://progressbar-2.readthedocs.io/en/latest/;
description = "Text progressbar library for python";
license = licenses.bsd3;
maintainers = with maintainers; [ ashgillman ];
};
})