python312Packages.types-regex: init at 2025.9.1.20250903 (#442963)
This commit is contained in:
@@ -7103,6 +7103,14 @@
|
||||
githubId = 2025623;
|
||||
name = "Luc Chabassier";
|
||||
};
|
||||
dwoffinden = {
|
||||
email = "daw@hey.com";
|
||||
github = "dwoffinden";
|
||||
githubId = 1432131;
|
||||
keys = [ { fingerprint = "46FC 889E BC38 100E 51E8 3245 F3EA 503B 360F BD40"; } ];
|
||||
matrix = "@dwoffinden:matrix.org";
|
||||
name = "Daniel Woffinden";
|
||||
};
|
||||
dwrege = {
|
||||
email = "email@dwrege.de";
|
||||
github = "DominicWrege";
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -19298,6 +19298,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 { };
|
||||
|
||||
Reference in New Issue
Block a user