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