blob: d386010f81d7c4b01ad7a741c14f124a5fb7698b (
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
|
{
lib,
buildPythonPackage,
django,
fetchPypi,
pytest-django,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "django-treebeard";
version = "4.7.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-hG5GKQS0NxVfduBJB7pOSEgHFoVfiLiY30Eivc+9bpg=";
};
propagatedBuildInputs = [ django ];
nativeCheckInputs = [
pytest-django
pytestCheckHook
];
pythonImportsCheck = [ "treebeard" ];
meta = {
description = "Efficient tree implementations for Django";
homepage = "https://tabo.pe/projects/django-treebeard/";
changelog = "https://github.com/django-treebeard/django-treebeard/blob/${version}/CHANGES.md";
license = lib.licenses.asl20;
};
}
|