python3Packages.regex: 2026.4.4 -> 2026.7.11

This commit is contained in:
Martin Weinelt
2026-07-15 03:11:58 +02:00
parent 2570484320
commit 888be46e0c
@@ -4,23 +4,23 @@
lib,
python,
setuptools,
pyprojectVersionPatchHook,
}:
let
version = "2026.4.4";
in
buildPythonPackage {
buildPythonPackage (finalAttrs: {
pname = "regex";
inherit version;
version = "2026.7.11";
pyproject = true;
src = fetchFromGitHub {
owner = "mrabarnett";
repo = "mrab-regex";
tag = version;
hash = "sha256-vLhukoQc50XOgv74hBQS36w+T+27y5GTTDetZ2JV8r4=";
tag = finalAttrs.version;
hash = "sha256-x9XjtIUjm1eV0GS0216ZimHx6DNxtxZV5pQ6dbkEfTc=";
};
nativeBuildInputs = [ pyprojectVersionPatchHook ];
build-system = [ setuptools ];
preCheck = ''
@@ -46,4 +46,4 @@ buildPythonPackage {
];
maintainers = [ lib.maintainers.dwoffinden ];
};
}
})