Skip to content

Commit

Permalink
python312Package.paramiko: gssapi is only needed on unix
Browse files Browse the repository at this point in the history
  • Loading branch information
pluiedev committed Nov 10, 2024
1 parent d7830d9 commit 508c83a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pkgs/development/python-modules/paramiko/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
stdenv,
bcrypt,
buildPythonPackage,
cryptography,
Expand Down Expand Up @@ -44,10 +45,7 @@ buildPythonPackage rec {
];

optional-dependencies = {
gssapi = [
pyasn1
gssapi
];
gssapi = [ pyasn1 ] ++ lib.optional (!stdenv.hostPlatform.isWindows) [ gssapi ];
ed25519 = [ ];
invoke = [ invoke ];
};
Expand Down

0 comments on commit 508c83a

Please sign in to comment.