linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyprind / default.nix
blob9c13a95357018fe4cfaab9372f69183710e40e66
1 { lib, fetchPypi, buildPythonPackage
2 , psutil
3 , pytest }:
5 buildPythonPackage rec {
6   pname = "PyPrind";
7   version = "2.11.2";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0xg6m5hr33h9bdlrr42kc58jm2m87a9zsagy7n2m4n407d2snv64";
12   };
14   buildInputs = [ psutil ];
16   checkInputs = [ pytest ];
18   checkPhase = ''
19     py.test tests
20   '';
22   meta = with lib; {
23     description = "Python Progress Bar and Percent Indicator Utility";
24     homepage = "https://github.com/rasbt/pyprind";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ jfrankenau ];
27   };