blob: 60432e4b83f579826b9b2f9b19b1fe9cb04842a2 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
django,
}:
buildPythonPackage rec {
pname = "django-treenode";
version = "0.23.3";
pyproject = true;
src = fetchFromGitHub {
owner = "fabiocaccamo";
repo = "django-treenode";
tag = version;
hash = "sha256-EinTO794JMUjH25WFo5LJh5HWQoOjq8hI0RR2z7u6+c=";
};
build-system = [
setuptools
];
dependencies = [
django
];
pythonImportsCheck = [
"treenode"
];
meta = {
description = "Deciduous_tree: probably the best abstract model/admin for your tree based stuff";
homepage = "https://github.com/fabiocaccamo/django-treenode";
changelog = "https://github.com/fabiocaccamo/django-treenode/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ leona ];
};
}
|