Skip to content

Commit

Permalink
pssh: 2.3.1 -> 2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
armeenm committed May 4, 2022
1 parent 6e4f70e commit 2d5d1d4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/tools/networking/pssh/default.nix
Original file line number Diff line number Diff line change
@@ -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 = ''
Expand All @@ -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 = ''
Expand Down

0 comments on commit 2d5d1d4

Please sign in to comment.