mealie: use 'python3' input

This makes it easier to use `packageOverrides` to pin dependencies in
the future.
This commit is contained in:
Bruno BELANYI
2026-03-30 11:00:40 +00:00
parent c682eb4b53
commit 6946a1e00f
+3 -3
View File
@@ -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";