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







                           
                     


                          
                                                                   














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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-HWkCWoa5509G2OHyPFijb5RVORAvE1tQEgL7myxP0SI=";
  };

  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 ];
  };
}