summary refs log blame commit diff
path: root/pkgs/development/python-modules/types-paramiko/default.nix
blob: 5b87e8079a5e9cb1e99e3adee4d6c1f004647871 (plain) (tree)
1
2
3
4
5
6
7
8
9







                           
                     


                          
                                                                   














                                                     
{ lib
, buildPythonPackage
, fetchPypi
, types-cryptography
}:

buildPythonPackage rec {
  pname = "types-paramiko";
  version = "2.8.17";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-1toFPkau9cYpvE6lvatWZwhlNerg/P2N6EBpQ7g00uY=";
  };

  pythonImportsCheck = [
    "paramiko-stubs"
  ];

  propagatedBuildInputs = [ types-cryptography ];

  meta = with lib; {
    description = "Typing stubs for paramiko";
    homepage = "https://github.com/python/typeshed";
    license = licenses.asl20;
    maintainers = with maintainers; [ jpetrucciani ];
  };
}