summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-05-05 01:26:11 +0200
committerGitHub <noreply@github.com>2022-05-05 01:26:11 +0200
commitc9b5c7b67ecef9fb40eb104715a594ef3fe1e7d0 (patch)
tree9ed6de665080b383250069ca0606fe019c7c91b5 /pkgs
parent06fe3073b7ad156589f80a43f8fbbc90f8bb1572 (diff)
parent2d5d1d4c1326a7472c79cc6c23c2792d6cce32e1 (diff)
Merge pull request #170418 from armeenm/bump-pssh
pssh: 2.3.1 -> 2.3.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/pssh/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/tools/networking/pssh/default.nix b/pkgs/tools/networking/pssh/default.nix
index 1d7d006f537a3..69236a690968f 100644
--- a/pkgs/tools/networking/pssh/default.nix
+++ b/pkgs/tools/networking/pssh/default.nix
@@ -1,14 +1,14 @@
-{ lib, fetchFromGitHub, python2Packages, openssh, rsync }:
+{ lib, fetchFromGitHub, python3Packages, openssh, rsync }:
 
-python2Packages.buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
   pname = "pssh";
-  version = "2.3.1";
+  version = "2.3.4";
 
   src = fetchFromGitHub {
     owner = "lilydjwg";
     repo = "pssh";
     rev = "v${version}";
-    sha256 = "0nawarxczfwajclnlsimhqkpzyqb1byvz9nsl54mi1bp80z5i4jq";
+    hash = "sha256-B1dIa6hNeq4iE8GKVhTp3Gzq7vp+v5Yyzj8uF8X71yg=";
   };
 
   postPatch = ''
@@ -20,6 +20,9 @@ python2Packages.buildPythonApplication rec {
     done
   '';
 
+  # Tests do not run with python3: https://github.com/lilydjwg/pssh/issues/126
+  doCheck = false;
+
   meta = with lib; {
     description = "Parallel SSH Tools";
     longDescription = ''