python313Packages.easy-thumbnails: patch Python 3.13 compatibility

Changed files
+9
pkgs
development
python-modules
easy-thumbnails
+9
pkgs/development/python-modules/easy-thumbnails/default.nix
···
buildPythonPackage,
django,
fetchFromGitHub,
pillow,
pythonOlder,
reportlab,
···
tag = version;
hash = "sha256-8JTHYQIBbu/4fknK2ZEQeDSgaxKGDfflxumcFMpaGQk=";
};
build-system = [ setuptools ];
···
buildPythonPackage,
django,
fetchFromGitHub,
+
fetchpatch,
pillow,
pythonOlder,
reportlab,
···
tag = version;
hash = "sha256-8JTHYQIBbu/4fknK2ZEQeDSgaxKGDfflxumcFMpaGQk=";
};
+
+
patches = [
+
(fetchpatch {
+
name = "python313-compat.patch";
+
url = "https://github.com/SmileyChris/easy-thumbnails/pull/650.patch";
+
hash = "sha256-qD/YnDlDZ7DghLv/mxjQ2o6pSl3fGR+Ipx5NX2BV6zc=";
+
})
+
];
build-system = [ setuptools ];