Commit 50d865aa authored by Fabian Affolter's avatar Fabian Affolter Committed by Martin Weinelt
Browse files

python312Packages.paramiko: adjust inputs

parent c8e5b1ea
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -11,15 +11,15 @@
  mock,
  pyasn1,
  pynacl,
  pytestCheckHook,
  pytest-relaxed,
  six,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
  pname = "paramiko";
  version = "3.5.0";
  format = "setuptools";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
@@ -35,11 +35,12 @@ buildPythonPackage rec {
    })
  ];

  build-system = [ setuptools ];

  dependencies = [
    bcrypt
    cryptography
    pyasn1
    six
    pynacl
  ];

  optional-dependencies = {
@@ -47,10 +48,7 @@ buildPythonPackage rec {
      pyasn1
      gssapi
    ];
    ed25519 = [
      pynacl
      bcrypt
    ];
    ed25519 = [ ];
    invoke = [ invoke ];
  };