pyinfra: fix paramiko dependency with patch

This commit is contained in:
Matthias Thym 2023-11-16 23:05:43 +01:00
parent d6400c8a2a
commit 1ae41456dd

View File

@ -5,6 +5,7 @@
, configparser
, distro
, fetchFromGitHub
, fetchpatch
, gevent
, jinja2
, paramiko
@ -30,6 +31,15 @@ buildPythonPackage rec {
hash = "sha256-BYd2UYQJD/HsmpnlQjZvjfg17ShPuA3j4rtv6fTQK/A=";
};
patches = [
# https://github.com/Fizzadar/pyinfra/pull/1018
(fetchpatch {
name = "bump-paramiko-major-version.patch";
url = "https://github.com/Fizzadar/pyinfra/commit/62a8f081279779c4f1eed246139f615cf5fed642.patch";
hash = "sha256-aT9SeSqXOD76LFzf6R/MWTtavcW6fZT7chkVg9aXiBg=";
})
];
propagatedBuildInputs = [
click
colorama