From 5c38d34fa8ebf0bb80ec6186354c23a883076e4b Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 31 Jan 2025 00:15:10 -0500 Subject: [PATCH] overrides: pin parallel-ssh to latest --- overlays/overrides.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/overlays/overrides.nix b/overlays/overrides.nix index 4d3c588..22f4105 100644 --- a/overlays/overrides.nix +++ b/overlays/overrides.nix @@ -70,6 +70,21 @@ in jupyter-server-proxy ; + ssh-python = latest.python3Packages.ssh-python.override { + inherit (pythonPrev) buildPythonPackage; + }; + ssh2-python = latest.python3Packages.ssh2-python.override { + inherit (pythonPrev) buildPythonPackage; + }; + parallel-ssh = latest.python3Packages.parallel-ssh.override { + inherit (pythonFinal) + buildPythonPackage + gevent + ssh-python + ssh2-python + ; + }; + qtile-extras = pythonPrev.qtile-extras.overridePythonAttrs { doCheck = false; };