Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 521 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, python 5}: 6 7buildPythonPackage rec { 8 version = "1.5"; 9 pname = "progress"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0wj3wvdgfmqj44n32wag3mzpp5fjqkkd321x67v1prxvs78yvv39"; 14 }; 15 16 checkPhase = '' 17 ${python.interpreter} test_progress.py 18 ''; 19 20 meta = with stdenv.lib; { 21 homepage = "https://github.com/verigak/progress/"; 22 description = "Easy to use progress bars"; 23 license = licenses.mit; 24 maintainers = [ maintainers.costrouc ]; 25 }; 26}