From 6946a1e00ff0c9ee72fccd12b0a6c06c68e5db83 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 30 Mar 2026 10:39:57 +0000 Subject: [PATCH] mealie: use 'python3' input This makes it easier to use `packageOverrides` to pin dependencies in the future. --- pkgs/by-name/me/mealie/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index d475fbd20914..8200c4b38e1e 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -5,7 +5,7 @@ fetchFromGitHub, makeWrapper, nixosTests, - python3Packages, + python3, nltk-data, writeShellScript, nix-update-script, @@ -22,8 +22,8 @@ let frontend = callPackage (import ./mealie-frontend.nix src version) { }; - pythonpkgs = python3Packages; - python = pythonpkgs.python; + python = python3; + pythonpkgs = python.pkgs; in pythonpkgs.buildPythonApplication rec { pname = "mealie";