nixpkgs/pkgs/development/python-modules/progress/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
523 B
Nix
Raw Normal View History

{ lib
2018-10-10 05:58:07 +01:00
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
2021-08-18 22:42:59 +01:00
version = "1.6";
2018-10-10 05:58:07 +01:00
pname = "progress";
src = fetchPypi {
inherit pname version;
2021-08-18 22:42:59 +01:00
sha256 = "c9c86e98b5c03fa1fe11e3b67c1feda4788b8d0fe7336c2ff7d5644ccfba34cd";
2018-10-10 05:58:07 +01:00
};
checkPhase = ''
${python.interpreter} test_progress.py
'';
meta = with lib; {
homepage = "https://github.com/verigak/progress/";
2018-10-10 05:58:07 +01:00
description = "Easy to use progress bars";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}