6 hatch-fancy-pypi-readme,
13 buildPythonPackage rec {
14 pname = "django-simple-history";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
22 repo = "django-simple-history";
23 rev = "refs/tags/${version}";
24 hash = "sha256-bPdMdtiEDRvRD00ZBwUQkeCDKCx2SW65+FsbuMwVdK0=";
28 hatch-fancy-pypi-readme
33 dependencies = [ django ];
37 ${python.interpreter} runtests.py
41 pythonImportsCheck = [ "simple_history" ];
44 description = "Module to store Django model state on every create/update/delete";
45 homepage = "https://github.com/jazzband/django-simple-history/";
46 changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${version}";
47 license = licenses.bsd3;
48 maintainers = with maintainers; [ derdennisop ];