python3packages.types-paramiko: init at 4.0.0.20250822

This commit is contained in:
daspk04
2026-04-19 18:02:32 -05:00
parent 2e8a5f682f
commit 50eed97734
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
cryptography,
}:
buildPythonPackage (finalAttrs: {
pname = "types-paramiko";
version = "4.0.0.20250822";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "types_paramiko";
inherit (finalAttrs) version;
hash = "sha256-G1awy9Puw9L9EjyesnBOYSt3fhWhdwWoBCeeplJeDFM=";
};
build-system = [ setuptools ];
dependencies = [
cryptography
];
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "paramiko-stubs" ];
meta = {
description = "Typing stubs for paramiko";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ daspk04 ];
};
})
+2
View File
@@ -20387,6 +20387,8 @@ self: super: with self; {
types-openpyxl = callPackage ../development/python-modules/types-openpyxl { };
types-paramiko = callPackage ../development/python-modules/types-paramiko { };
types-pillow = callPackage ../development/python-modules/types-pillow { };
types-protobuf = callPackage ../development/python-modules/types-protobuf { };