18 buildPythonPackage rec {
19 pname = "django-hierarkey";
23 src = fetchFromGitHub {
25 repo = "django-hierarkey";
26 rev = "refs/tags/${version}";
27 hash = "sha256-1LSH9GwoNF3NrDVNUIHDAVsktyKIprDgB5XlIHeM3fM=";
30 build-system = [ setuptools ];
32 dependencies = [ python-dateutil ];
34 pythonImportsCheck = [ "hierarkey" ];
42 DJANGO_SETTINGS_MODULE = "tests.settings";
44 pytestFlagsArray = [ "tests" ];
47 description = "Flexible and powerful hierarchical key-value store for your Django models";
48 homepage = "https://github.com/raphaelm/django-hierarkey";
49 license = licenses.asl20;
50 maintainers = with maintainers; [ hexa ];