mymcplus: use pkgs.callPackage and python3Packages in dependencies

This commit is contained in:
Wroclaw
2025-04-03 16:44:24 +02:00
parent 574aab9e63
commit 86f32f6c42
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
{
lib,
fetchFromSourcehut,
pythonPackages,
python3Packages,
wrapGAppsHook3,
}:
pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "mymcplus";
version = "3.0.5";
@@ -20,7 +20,7 @@ pythonPackages.buildPythonApplication rec {
wrapGAppsHook3
];
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python3Packages; [
pyopengl
wxpython
];
+1 -1
View File
@@ -1175,7 +1175,7 @@ with pkgs;
mpy-utils = python3Packages.callPackage ../tools/misc/mpy-utils { };
mymcplus = python3Packages.callPackage ../tools/games/mymcplus { };
mymcplus = callPackage ../tools/games/mymcplus { };
networkd-notify = python3Packages.callPackage ../tools/networking/networkd-notify {
systemd = pkgs.systemd;