blob: e69d6d14982c68912a301766f73a21c9ba2195a0 (
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
46
47
48
49
|
{
lib,
buildPythonPackage,
click,
colorama,
deprecation-alias,
domdf-python-tools,
fetchPypi,
flit-core,
mistletoe,
psutil,
typing-extensions,
}:
buildPythonPackage rec {
pname = "consolekit";
version = "1.11.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-PZGrN5GJVtDruZkW3bJJpOfTi1nT3lN6XoBaaMLJE8E=";
};
build-system = [ flit-core ];
dependencies = [
click
colorama
deprecation-alias
domdf-python-tools
mistletoe
typing-extensions
];
optional-dependencies = {
terminals = [ psutil ];
};
pythonImportsCheck = [ "consolekit" ];
meta = {
description = "Additional utilities for click";
homepage = "https://github.com/domdfcoding/consolekit";
changelog = "https://github.com/domdfcoding/consolekit/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyberius-prime ];
};
}
|