1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 python,
6}:
7
8buildPythonPackage rec {
9 version = "1.6";
10 format = "setuptools";
11 pname = "progress";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "c9c86e98b5c03fa1fe11e3b67c1feda4788b8d0fe7336c2ff7d5644ccfba34cd";
16 };
17
18 checkPhase = ''
19 ${python.interpreter} test_progress.py
20 '';
21
22 meta = with lib; {
23 homepage = "https://github.com/verigak/progress/";
24 description = "Easy to use progress bars";
25 license = licenses.mit;
26 maintainers = [ ];
27 };
28}