Merge pull request #189900 from mweinelt/django-4.1.1

authored by

Martin Weinelt and committed by
GitHub
0952cdfc aa988f19

+2 -9
+2 -9
pkgs/development/python-modules/django/4.nix
··· 40 40 41 41 buildPythonPackage rec { 42 42 pname = "Django"; 43 - version = "4.1"; 43 + version = "4.1.1"; 44 44 format = "pyproject"; 45 45 46 46 disabled = pythonOlder "3.8"; 47 47 48 48 src = fetchPypi { 49 49 inherit pname version; 50 - hash = "sha256-Ay+Kb8fPBczRIU5KLiHfzWojudV1xlc8rMjGeCjb5kI="; 50 + hash = "sha256-oVP/1RQ78mqHe/ri9Oxzbr2JJKRmAMoImtlrVKHU4o4="; 51 51 }; 52 52 53 53 patches = [ 54 - (fetchpatch { 55 - # Fix regression in sqlite backend introduced in 4.1. 56 - # https://github.com/django/django/pull/15925 57 - url = "https://github.com/django/django/commit/c0beff21239e70cbdcc9597e5be09e505bb8f76c.patch"; 58 - hash = "sha256-QE7QnfYAK74wvK8gDJ15FtQ+BCIWRQKAVvM7v1FzwlE="; 59 - excludes = [ "docs/releases/4.1.1.txt" ]; 60 - }) 61 54 (substituteAll { 62 55 src = ./django_4_set_zoneinfo_dir.patch; 63 56 zoneinfo = tzdata + "/share/zoneinfo";