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

29 lines
594 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
2018-03-09 09:20:32 +00:00
, psutil
, pytest }:
buildPythonPackage rec {
pname = "PyPrind";
version = "2.11.3";
2018-03-09 09:20:32 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "e37dcab6e1a9c8e0a7f0fce65fde7a79e2deda1c75aa015910a49e2137b54cbf";
2018-03-09 09:20:32 +00:00
};
buildInputs = [ psutil ];
checkInputs = [ pytest ];
checkPhase = ''
py.test tests
'';
meta = with lib; {
2018-03-09 09:20:32 +00:00
description = "Python Progress Bar and Percent Indicator Utility";
homepage = "https://github.com/rasbt/pyprind";
2018-03-09 09:20:32 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ jfrankenau ];
};
}