blob: f1c6b7adf2842bd08afd4d1492135e2298f56906 (
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
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchPypi,
# dependencies
blessed,
prefixed,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "enlighten";
version = "1.14.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-hcNUEqmk84hrMzfUH4E0Qfq5ow2fW18MAVvQeKRBFHM=";
};
dependencies = [
blessed
prefixed
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "enlighten" ];
meta = {
description = "Enlighten Progress Bar for Python Console Apps";
homepage = "https://github.com/Rockhopper-Technologies/enlighten";
changelog = "https://github.com/Rockhopper-Technologies/enlighten/releases/tag/${version}";
license = with lib.licenses; [ mpl20 ];
maintainers = with lib.maintainers; [
veprbl
doronbehar
];
};
}
|