blob: 133f86677c898585c912dc6813a158cda5d3bcc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
lib,
fetchPypi,
buildPythonPackage,
psutil,
pytest,
}:
buildPythonPackage rec {
pname = "pyprind";
version = "2.11.3";
format = "setuptools";
src = fetchPypi {
pname = "PyPrind";
inherit version;
sha256 = "e37dcab6e1a9c8e0a7f0fce65fde7a79e2deda1c75aa015910a49e2137b54cbf";
};
buildInputs = [ psutil ];
nativeCheckInputs = [ pytest ];
checkPhase = ''
py.test tests
'';
meta = {
description = "Python Progress Bar and Percent Indicator Utility";
homepage = "https://github.com/rasbt/pyprind";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|