From 181ba57e9bc800523b2ac77ace534028242c4ebd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 1 Apr 2025 22:57:28 +0200 Subject: [PATCH] python313Packages.django-storages: 1.14.4 -> 1.14.5 Diff: https://github.com/jschneier/django-storages/compare/refs/tags/1.14.4...1.14.5 Changelog: https://github.com/jschneier/django-storages/blob/1.14.5/CHANGELOG.rst --- .../python-modules/django-storages/default.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/django-storages/default.nix b/pkgs/development/python-modules/django-storages/default.nix index 916fa236f771..fa241f9a7048 100644 --- a/pkgs/development/python-modules/django-storages/default.nix +++ b/pkgs/development/python-modules/django-storages/default.nix @@ -7,21 +7,21 @@ django, dropbox, fetchFromGitHub, + fetchpatch, google-cloud-storage, libcloud, moto, paramiko, + pynacl, pytestCheckHook, pythonOlder, rsa, setuptools, - pynacl, - fetchpatch, }: buildPythonPackage rec { pname = "django-storages"; - version = "1.14.4"; + version = "1.14.5"; pyproject = true; disabled = pythonOlder "3.7"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "jschneier"; repo = "django-storages"; tag = version; - hash = "sha256-nlM/XPot3auLzNsnHCVtog2WmiaibDRgbPOw9A5F9QI="; + hash = "sha256-KWYDcHDLIoS42RqtD66tC/gKoeOBuYyT6jVOJ+cPYYU="; }; patches = [ @@ -41,13 +41,6 @@ buildPythonPackage rec { hash = "sha256-jSb/uJ0RXvPsXl+WUAzAgDvJl9Y3ad2F30X1SbsCc04="; name = "add_moto_5_support.patch"; }) - # Fix Google Cloud tests - # https://github.com/jschneier/django-storages/pull/1476 - (fetchpatch { - url = "https://github.com/jschneier/django-storages/commit/fda4e2375bfc5b400593ce01f6516dc3264d0357.patch"; - hash = "sha256-Dga4xvCjeKEwuH0ynyJeM0criBtKT6Z+4gINXMKh4Ng="; - name = "fix_google_cloud_tests.patch"; - }) ]; build-system = [ setuptools ];