From f4f38cb07a99d771efc7f731c8de0884f323a759 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Tue, 19 Aug 2025 10:26:41 +0200 Subject: [PATCH] update module --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index cde816c..d87ef3f 100644 --- a/flake.nix +++ b/flake.nix @@ -16,14 +16,14 @@ ); in { overlay = final: prev: { - fragify = with final; python3Packages.buildPythonApplication { + fragify = with final; python3Packages.buildPythonApplication rec { pname = "fragify"; version = "0.0.1"; format = "other"; src = self; - propagatedBuildInputs = with python3Packages; [ falcon requests jinja2 ]; + dependencies = with python3Packages; [ falcon requests jinja2 ]; installPhase = '' install -Dm755 ${./fragify.py} $out/bin/fragify @@ -37,7 +37,7 @@ fi ''; - passthru.pythonPath = python3Packages.makePythonPath propagatedBuildInputs; + passthru.pythonPath = python3Packages.makePythonPath dependencies; meta.mainProgram = "fragify"; };