My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/progress/default.nix

26 lines
523 B

{ lib
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
version = "1.6";
pname = "progress";
src = fetchPypi {
inherit pname version;
sha256 = "c9c86e98b5c03fa1fe11e3b67c1feda4788b8d0fe7336c2ff7d5644ccfba34cd";
};
checkPhase = ''
${python.interpreter} test_progress.py
'';
meta = with lib; {
homepage = "https://github.com/verigak/progress/";
description = "Easy to use progress bars";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}