gallia: 2.0.0b2 -> 2.0.0b3

Changelog: https://github.com/Fraunhofer-AISEC/gallia/releases/tag/v2.0.0b3
This commit is contained in:
Fabian Affolter
2025-12-13 10:10:43 +01:00
parent a2136add4b
commit 785d467df3
+3 -3
View File
@@ -8,19 +8,19 @@
python3.pkgs.buildPythonApplication rec {
pname = "gallia";
version = "2.0.0b2";
version = "2.0.0b3";
pyproject = true;
src = fetchFromGitHub {
owner = "Fraunhofer-AISEC";
repo = "gallia";
tag = "v${version}";
hash = "sha256-CZsVd9ob4FHC9KeepK7OHWatVTJUiJEjqtaylhD+yS0=";
hash = "sha256-/ql2EORU1oqZ/+90F0FFfRVdv6Esa5UqfaasLE4wf8k=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build>=0.8.11,<0.9.0" "uv_build"
--replace-fail "uv_build>=0.9.11,<0.10.0" "uv_build"
'';
pythonRelaxDeps = [ "pydantic" ];