nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pssh: 2.3.4 -> 2.3.5

Changelog: https://github.com/lilydjwg/pssh/blob/v2.3.5/ChangeLog

+7 -4
+7 -4
pkgs/by-name/ps/pssh/package.nix
··· 8 8 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "pssh"; 11 - version = "2.3.4"; 12 - format = "setuptools"; 11 + version = "2.3.5"; 12 + pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "lilydjwg"; 16 16 repo = "pssh"; 17 - rev = "v${version}"; 18 - hash = "sha256-B1dIa6hNeq4iE8GKVhTp3Gzq7vp+v5Yyzj8uF8X71yg="; 17 + tag = "v${version}"; 18 + hash = "sha256-JZOO5xmW34lvWzGL4tC9fquZOOYhub0/aa/iQ63rjHE="; 19 19 }; 20 + 21 + build-system = with python3Packages; [ setuptools ]; 20 22 21 23 postPatch = '' 22 24 for f in bin/*; do ··· 39 37 including pssh, pscp, prsync, pnuke and pslurp. 40 38 ''; 41 39 inherit (src.meta) homepage; 40 + changelog = "https://github.com/lilydjwg/pssh/blob/${src.tag}/ChangeLog"; 42 41 license = licenses.bsd3; 43 42 platforms = platforms.linux ++ platforms.darwin; 44 43 maintainers = with maintainers; [ chris-martin ];