python312Packages.types-regex: init at 2025.9.1.20250903

This commit is contained in:
Daniel Woffinden
2025-09-14 21:34:35 +01:00
parent 684791a20c
commit a2b1feab74
2 changed files with 35 additions and 0 deletions
@@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-regex";
version = "2025.9.1.20250903";
pyproject = true;
src = fetchPypi {
pname = "types_regex";
inherit version;
hash = "sha256-IwEW9ktcCLBhCdlQCG5V/ICbiipdE+gCGKx880+arIQ=";
};
build-system = [
setuptools
];
pythonImportsCheck = [
"regex-stubs"
];
meta = {
description = "Typing stubs for regex";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dwoffinden ];
};
}
+2
View File
@@ -19294,6 +19294,8 @@ self: super: with self; {
types-redis = callPackage ../development/python-modules/types-redis { };
types-regex = callPackage ../development/python-modules/types-regex { };
types-requests = callPackage ../development/python-modules/types-requests { };
types-retry = callPackage ../development/python-modules/types-retry { };