python312Packages.django-simple-history: 3.7.0 -> 3.9.0 (#381500)

authored by Weijia Wang and committed by GitHub d4d7eaf0 f4ea3b50

+4 -4
+4 -4
pkgs/development/python-modules/django-simple-history/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "django-simple-history"; 15 - version = "3.7.0"; 15 + version = "3.9.0"; 16 16 pyproject = true; 17 17 18 - disabled = pythonOlder "3.8"; 18 + disabled = pythonOlder "3.9"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "jazzband"; 22 22 repo = "django-simple-history"; 23 23 tag = version; 24 - hash = "sha256-bPdMdtiEDRvRD00ZBwUQkeCDKCx2SW65+FsbuMwVdK0="; 24 + hash = "sha256-df6AWyliKSqKH0yacpHgGZXNvmjiJuFJWoJ7502IMB4="; 25 25 }; 26 26 27 27 build-system = [ ··· 43 43 meta = with lib; { 44 44 description = "Module to store Django model state on every create/update/delete"; 45 45 homepage = "https://github.com/jazzband/django-simple-history/"; 46 - changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${version}"; 46 + changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${src.tag}"; 47 47 license = licenses.bsd3; 48 48 maintainers = with maintainers; [ derdennisop ]; 49 49 };