diff --git a/pkgs_pr/webcomix.nix b/pkgs_pr/webcomix.nix index 617a8e4..2698730 100644 --- a/pkgs_pr/webcomix.nix +++ b/pkgs_pr/webcomix.nix @@ -39,11 +39,11 @@ buildPythonApplication rec { click tqdm scrapy - (scrapy-splash.overridePythonAttrs (oldAttrs: { + (scrapy-splash.overridePythonAttrs (_oldAttrs: { doCheck = false; nativeCheckInputs = [ ]; })) - (scrapy-fake-useragent.overridePythonAttrs (oldAttrs: { + (scrapy-fake-useragent.overridePythonAttrs (_oldAttrs: { doCheck = false; nativeCheckInputs = [ ]; checkPhase = ""; @@ -58,7 +58,7 @@ buildPythonApplication rec { ''; doCheck = false; - + # Skip runtime dependency check due to version mismatches with nixpkgs dontCheckRuntimeDeps = true; diff --git a/pkgs_wip/colordle.nix b/pkgs_wip/colordle.nix index 255cbe0..ff8621b 100644 --- a/pkgs_wip/colordle.nix +++ b/pkgs_wip/colordle.nix @@ -28,27 +28,36 @@ stdenv.mkDerivation rec { buildInputs = [ gtk4 libadwaita - (python3.withPackages (ps: with ps; [ - pygobject3 - pycairo - ])) + (python3.withPackages ( + ps: with ps; [ + pygobject3 + pycairo + ] + )) ]; installPhase = '' runHook preInstall - + mkdir -p $out/bin $out/share/hexcolordle-gtk $out/share/applications $out/share/metainfo cp -r * $out/share/hexcolordle-gtk/ - + # Install desktop file and metainfo cp net.krafting.HexColordle.desktop $out/share/applications/ cp net.krafting.HexColordle.metainfo.xml $out/share/metainfo/ - + # Create wrapper for the main Python file - makeWrapper ${python3.withPackages (ps: with ps; [pygobject3 pycairo])}/bin/python3 $out/bin/hexcolordle-gtk \ + makeWrapper ${ + python3.withPackages ( + ps: with ps; [ + pygobject3 + pycairo + ] + ) + }/bin/python3 $out/bin/hexcolordle-gtk \ --add-flags "$out/share/hexcolordle-gtk/HexColordle.py" \ --prefix PYTHONPATH : "$out/share/hexcolordle-gtk" - + runHook postInstall ''; diff --git a/pkgs_wip/dosage.nix b/pkgs_wip/dosage.nix index 10176f3..4b63f53 100644 --- a/pkgs_wip/dosage.nix +++ b/pkgs_wip/dosage.nix @@ -15,7 +15,6 @@ gtk4, libadwaita, wrapGAppsHook4, - makeWrapper, }: stdenv.mkDerivation rec { diff --git a/pkgs_wip/protonup-qt.nix b/pkgs_wip/protonup-qt.nix index f9f191c..329c991 100644 --- a/pkgs_wip/protonup-qt.nix +++ b/pkgs_wip/protonup-qt.nix @@ -27,7 +27,7 @@ buildPythonApplication rec { pythonRemoveDeps = [ "pyside6-essentials" ]; - + # Skip runtime dependency check for missing packages dontCheckRuntimeDeps = true; diff --git a/pkgs_wip/qbit-manage.nix b/pkgs_wip/qbit-manage.nix index c86efcd..db34362 100644 --- a/pkgs_wip/qbit-manage.nix +++ b/pkgs_wip/qbit-manage.nix @@ -55,7 +55,7 @@ buildPythonApplication rec { slowapi uvicorn ]; - + # Skip runtime dependency check due to version mismatches with nixpkgs dontCheckRuntimeDeps = true; diff --git a/pkgs_wip/steam.nix b/pkgs_wip/steam.nix index f1f5836..0abf233 100644 --- a/pkgs_wip/steam.nix +++ b/pkgs_wip/steam.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - callPackage, setuptools, wheel, six,