From f9ad3f57f8c38037036a601059fc549678c24327 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 17 Oct 2025 12:54:27 +0000 Subject: [PATCH 1/2] python3Packages.ssh-python: 1.1.1 -> 1.2.0.post1 --- pkgs/development/python-modules/ssh-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ssh-python/default.nix b/pkgs/development/python-modules/ssh-python/default.nix index 2704600d0900..f914721204e4 100644 --- a/pkgs/development/python-modules/ssh-python/default.nix +++ b/pkgs/development/python-modules/ssh-python/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "ssh-python"; - version = "1.1.1"; + version = "1.2.0.post1"; format = "setuptools"; src = fetchFromGitHub { owner = "ParallelSSH"; repo = "ssh-python"; tag = version; - hash = "sha256-kidz4uHT5C8TUROLGQUHihemYtwOoWZQNw7ElbwYKLM="; + hash = "sha256-ix6UzyC/mFDVOvfJujwppijmsTrwNtuDAkmikrKKc2o="; }; build-system = [ setuptools ]; From 0375f028e797116a24026a661dec1b7e3d4c82f3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 18 Oct 2025 12:13:41 +0200 Subject: [PATCH 2/2] python313Packages.ssh-python: modernize --- pkgs/development/python-modules/ssh-python/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/ssh-python/default.nix b/pkgs/development/python-modules/ssh-python/default.nix index f914721204e4..02c957dd2f54 100644 --- a/pkgs/development/python-modules/ssh-python/default.nix +++ b/pkgs/development/python-modules/ssh-python/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "ssh-python"; version = "1.2.0.post1"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "ParallelSSH"; @@ -22,9 +22,9 @@ buildPythonPackage rec { }; build-system = [ setuptools ]; - nativeBuildInputs = [ - cython - ]; + + nativeBuildInputs = [ cython ]; + buildInputs = [ openssl zlib