blob: a05eb67348063f6be460abc13808016e83de63f6 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
urwid,
}:
buildPythonPackage rec {
pname = "urwidtrees";
version = "1.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "pazz";
repo = "urwidtrees";
tag = version;
hash = "sha256-MQy2b0Q3gTbY8lmmt39Z1Nix0UpQtj+14T/zE1F/YJ4=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ urwid ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "urwidtrees" ];
meta = {
description = "Tree widgets for urwid";
homepage = "https://github.com/pazz/urwidtrees";
changelog = "https://github.com/pazz/urwidtrees/releases/tag/${src.tag}";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
};
}
|