Merge pull request #227655 from mweinelt/django-4.2-taggit-fixup

python310Packages.django-taggit: Fix django 4.2 support
This commit is contained in:
Martin Weinelt
2023-04-22 20:19:26 +02:00
committed by GitHub
@@ -2,6 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchPypi
, fetchpatch
, django
, djangorestframework
, python
@@ -19,6 +20,14 @@ buildPythonPackage rec {
hash = "sha256-yPLk6uOHk5CJs9ddHYZJ4AiICXDAaM6dDoL4f9XilQg=";
};
patches = [
(fetchpatch {
# Django 4.2 support; https://github.com/jazzband/django-taggit/pull/850
url = "https://github.com/jazzband/django-taggit/commit/5f19cfbaa14e8d6d4d1679529eb168a87ca97908.patch";
hash = "sha256-KcsiACLy3+1JoFquu//Kz+iAySZQAVIuBEKzNZaaR9s=";
})
];
propagatedBuildInputs = [
django
];