mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
pyinfra: fix paramiko dependency with patch
This commit is contained in:
parent
d6400c8a2a
commit
1ae41456dd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user