blob: 31474f561da80cc720903f47bbd47087775d72ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "types-regex";
version = "2026.1.15.20260116";
pyproject = true;
src = fetchPypi {
pname = "types_regex";
inherit (finalAttrs) version;
hash = "sha256-cVGpvMW7+ez8z4M1xFGsqCBPWgmS4GIqr69IKHbO5Pc=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "regex-stubs" ];
# Module has no tests
doCheck = false;
meta = {
description = "Typing stubs for regex";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dwoffinden ];
};
})
|