python3Packages.django-bootstrap3: fix build with uv_build 0.9.0

This commit is contained in:
Sizhe Zhao
2025-10-08 21:34:52 +08:00
parent 1cb13614d9
commit f8a5a66b69
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
# build-system
uv-build,
@@ -26,6 +27,15 @@ buildPythonPackage rec {
hash = "sha256-TaB2PeBjmCNFuEZ+To2Q3C6zlFCaaTB70LxQWWb5AEo=";
};
patches = [
# https://github.com/zostera/django-bootstrap3/pull/1085
(fetchpatch2 {
name = "uv-build.patch";
url = "https://github.com/Prince213/django-bootstrap3/commit/d3285ad9c3de87aa763bb49b9666baed514f7c87.patch?full_index=1";
hash = "sha256-VcRC7ehyVTl0KuovD8tNCbZnKXKCOGpux1XXUOoDaTw=";
})
];
build-system = [ uv-build ];
dependencies = [ django ];