Unverified Commit e4c85e20 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.django-annoying: 0.10.6 -> 0.10.7 (#373984)

parents 0c7f9d92 6f25957f
Loading
Loading
Loading
Loading
+8 −13
Original line number Diff line number Diff line
@@ -2,34 +2,28 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  django,
  six,
  pytest-django,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "django-annoying";
  version = "0.10.6";
  format = "setuptools";
  version = "0.10.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "skorokithakis";
    repo = "django-annoying";
    rev = "v${version}";
    hash = "sha256-M1zOLr1Vjf2U0xlW66Mpno+S+b4IKLklN+kYxRaj6cA=";
    tag = "v${version}";
    hash = "sha256-lEl9k2DOJUiCxiSp1xWIGsKbZ9iJlNWr3mxTXlKXbt4=";
  };

  patches = [
    (fetchpatch {
      name = "django-4-compatibility.patch";
      url = "https://github.com/skorokithakis/django-annoying/pull/101/commits/51b5bd7bc8bb7a410400667e00d0813603df32bd.patch";
      hash = "sha256-gLRlAtIHHJ85I88af3C3y+ZT+nXrj2KrV7QgOuEqspk=";
    })
  ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    django
    six
  ];
@@ -44,6 +38,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Django application that tries to eliminate annoying things in the Django framework";
    homepage = "https://skorokithakis.github.io/django-annoying/";
    changelog = "https://github.com/skorokithakis/django-annoying/releases/tag/v$version";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ambroisie ];
  };