about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-04-12 09:13:53 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-04-12 09:13:53 +0200
commit26fc75a28ec39848eed78532e0799e3ed03bd4e3 (patch)
tree08cf1a77e5e8d3763d08d7f91f932cbf7116c0fb
parentff11f59f9fd933edf33cbc497421b9258647bc6c (diff)
gallia: refactor
-rw-r--r--pkgs/tools/security/gallia/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/tools/security/gallia/default.nix b/pkgs/tools/security/gallia/default.nix
index 7b85f7959378a..1f481d280d822 100644
--- a/pkgs/tools/security/gallia/default.nix
+++ b/pkgs/tools/security/gallia/default.nix
@@ -16,16 +16,19 @@ python3.pkgs.buildPythonApplication rec {
     hash = "sha256-hLGaImYkv6/1Wv1a+0tKmW4qmV4akNoyd0RXopJjetI=";
   };
 
-  nativeBuildInputs = with python3.pkgs; [
+  pythonRelaxDeps = [
+    "httpx"
+  ];
+
+  build-system = with python3.pkgs; [
     poetry-core
-    pythonRelaxDepsHook
   ];
 
-  pythonRelaxDeps = [
-    "httpx"
+  nativeBuildInputs = with python3.pkgs; [
+    pythonRelaxDepsHook
   ];
 
-  propagatedBuildInputs = with python3.pkgs; [
+  dependencies = with python3.pkgs; [
     aiofiles
     aiohttp
     aiosqlite