python3Packages.django_4: 4.1 -> 4.1.1

https://docs.djangoproject.com/en/4.1/releases/4.1.1/
This commit is contained in:
Martin Weinelt 2022-09-05 21:40:30 +02:00
parent cd8ac58dc8
commit 8fcca788fb
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -40,24 +40,17 @@
buildPythonPackage rec {
pname = "Django";
version = "4.1";
version = "4.1.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ay+Kb8fPBczRIU5KLiHfzWojudV1xlc8rMjGeCjb5kI=";
hash = "sha256-oVP/1RQ78mqHe/ri9Oxzbr2JJKRmAMoImtlrVKHU4o4=";
};
patches = [
(fetchpatch {
# Fix regression in sqlite backend introduced in 4.1.
# https://github.com/django/django/pull/15925
url = "https://github.com/django/django/commit/c0beff21239e70cbdcc9597e5be09e505bb8f76c.patch";
hash = "sha256-QE7QnfYAK74wvK8gDJ15FtQ+BCIWRQKAVvM7v1FzwlE=";
excludes = [ "docs/releases/4.1.1.txt" ];
})
(substituteAll {
src = ./django_4_set_zoneinfo_dir.patch;
zoneinfo = tzdata + "/share/zoneinfo";