Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / django-treebeard / default.nix
blob6b26ece7dd50e892298a837d94d714168fd1a07d
1 { lib
2 , buildPythonPackage
3 , django
4 , fetchPypi
5 , pytest-django
6 , pytestCheckHook
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "django-treebeard";
12   version = "4.7.1";
13   format = "setuptools";
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-hG5GKQS0NxVfduBJB7pOSEgHFoVfiLiY30Eivc+9bpg=";
20   };
22   propagatedBuildInputs = [
23     django
24   ];
26   nativeCheckInputs = [
27     pytest-django
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "treebeard"
33   ];
35   meta = with lib; {
36     description = "Efficient tree implementations for Django";
37     homepage = "https://tabo.pe/projects/django-treebeard/";
38     changelog = "https://github.com/django-treebeard/django-treebeard/blob/${version}/CHANGES.md";
39     license = licenses.asl20;
40     maintainers = with maintainers; [ desiderius ];
41   };