0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

treewide: cleanup paramiko.optional-dependency.ed25519

This commit is contained in:
Sandro Jäckel 2024-10-19 16:33:46 +02:00
parent 8a254de229
commit be2336e18b
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
3 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ buildPythonPackage rec {
];
optional-dependencies = {
ssh = [ paramiko paramiko.optional-dependencies.ed25519 ];
ssh = [ paramiko ];
tls = [];
websockets = [ websocket-client ];
};

View file

@ -27,7 +27,7 @@ buildPythonPackage rec {
paramiko
lxml
six
] ++ paramiko.optional-dependencies.ed25519;
];
nativeCheckInputs = [ pytestCheckHook ];

View file

@ -20,7 +20,7 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [ paramiko ] ++ paramiko.optional-dependencies.ed25519;
dependencies = [ paramiko ];
nativeCheckInputs = [
pytestCheckHook