From aa73d68c11629a35d8088990fba7e7f5db795cf0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 5 Apr 2025 13:12:17 +0200 Subject: [PATCH] gallia: 1.9.0 -> 2.0.0a4 Diff: https://github.com/Fraunhofer-AISEC/gallia/compare/refs/tags/v1.9.0...2.0.0a4 Changelog: https://github.com/Fraunhofer-AISEC/gallia/releases/tag/v2.0.0a4 --- pkgs/by-name/ga/gallia/package.nix | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/pkgs/by-name/ga/gallia/package.nix b/pkgs/by-name/ga/gallia/package.nix index d54a87e02301..ae405bce0130 100644 --- a/pkgs/by-name/ga/gallia/package.nix +++ b/pkgs/by-name/ga/gallia/package.nix @@ -8,41 +8,27 @@ python3.pkgs.buildPythonApplication rec { pname = "gallia"; - version = "1.9.0"; + version = "2.0.0a4"; pyproject = true; src = fetchFromGitHub { owner = "Fraunhofer-AISEC"; repo = "gallia"; tag = "v${version}"; - hash = "sha256-izMTTZrp4aizq5jS51BNtq3lv9Kr+xI7scZfYKXA/oY="; + hash = "sha256-by2zlfVN/FUNU9d5nn4JZ8xzto3k60DITPYhYqwm3Ms="; }; - pythonRelaxDeps = [ - "aiofiles" - "httpx" - "msgspec" - ]; - - build-system = with python3.pkgs; [ poetry-core ]; + build-system = with python3.pkgs; [ hatchling ]; dependencies = with python3.pkgs; [ - aiofiles - aiohttp aiosqlite argcomplete - python-can - exitcode + boltons construct - httpx more-itertools - msgspec platformdirs - psutil pydantic - pygit2 tabulate - tomli zstandard ];