From 639e5cb8cfe5ed8e651731c725d980507852c7ac Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Tue, 19 Aug 2025 10:26:02 +0200 Subject: [PATCH] update module --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 61861b3..cde816c 100644 --- a/flake.nix +++ b/flake.nix @@ -23,7 +23,7 @@ src = self; - dependencies = with python3Packages; [ falcon requests jinja2 ]; + propagatedBuildInputs = with python3Packages; [ falcon requests jinja2 ]; installPhase = '' install -Dm755 ${./fragify.py} $out/bin/fragify @@ -37,7 +37,7 @@ fi ''; - passthru.pythonPath = python3Packages.makePythonPath dependencies; + passthru.pythonPath = python3Packages.makePythonPath propagatedBuildInputs; meta.mainProgram = "fragify"; };