Unverified Commit d4d7eaf0 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

parents f4ea3b50 1bdf2260
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -12,16 +12,16 @@

buildPythonPackage rec {
  pname = "django-simple-history";
  version = "3.7.0";
  version = "3.9.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "jazzband";
    repo = "django-simple-history";
    tag = version;
    hash = "sha256-bPdMdtiEDRvRD00ZBwUQkeCDKCx2SW65+FsbuMwVdK0=";
    hash = "sha256-df6AWyliKSqKH0yacpHgGZXNvmjiJuFJWoJ7502IMB4=";
  };

  build-system = [
@@ -43,7 +43,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module to store Django model state on every create/update/delete";
    homepage = "https://github.com/jazzband/django-simple-history/";
    changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${version}";
    changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${src.tag}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ derdennisop ];
  };