python3Packages.types-openpyxl: init at 3.1.5.20250809 (#432766)

This commit is contained in:
Yohann Boniface
2026-01-27 20:20:11 +00:00
committed by GitHub
2 changed files with 31 additions and 0 deletions
@@ -0,0 +1,29 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "types-openpyxl";
version = "3.1.5.20250809";
pyproject = true;
src = fetchPypi {
pname = "types_openpyxl";
inherit (finalAttrs) version;
hash = "sha256-SVNvoYo6i1Z7bSZx0zAdjCQOwvG895UQ9LrZ+skjLL0=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "openpyxl-stubs" ];
meta = {
description = "Typing stubs for openpyxl";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.me-and ];
};
})
+2
View File
@@ -19931,6 +19931,8 @@ self: super: with self; {
types-mysqlclient = callPackage ../development/python-modules/types-mysqlclient { };
types-openpyxl = callPackage ../development/python-modules/types-openpyxl { };
types-pillow = callPackage ../development/python-modules/types-pillow { };
types-protobuf = callPackage ../development/python-modules/types-protobuf { };