summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2026-01-19 02:31:36 +0000
committerGitHub <noreply@github.com>2026-01-19 02:31:36 +0000
commit7037463125d562d71d4a5569092dd7aaea90eea8 (patch)
treea8badd68539b5278cf3b8cfabdda771ce01a8fb3
parent9157b505d8ebc805aecb7995068801be09d5798d (diff)
parent3f6f41c766874056d2b470482bcb903a81bd6079 (diff)
python3Packages.types-regex: 2025.11.3.20251106 -> 2026.1.15.20260116 (#481469)
-rw-r--r--pkgs/development/python-modules/types-regex/default.nix21
1 files changed, 10 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/types-regex/default.nix b/pkgs/development/python-modules/types-regex/default.nix
index fd6ddb3c846f..31474f561da8 100644
--- a/pkgs/development/python-modules/types-regex/default.nix
+++ b/pkgs/development/python-modules/types-regex/default.nix
@@ -5,24 +5,23 @@
setuptools,
}:
-buildPythonPackage rec {
+buildPythonPackage (finalAttrs: {
pname = "types-regex";
- version = "2025.11.3.20251106";
+ version = "2026.1.15.20260116";
pyproject = true;
src = fetchPypi {
pname = "types_regex";
- inherit version;
- hash = "sha256-X5go7TmlpScntjf5P38PkJ1W+iIRYE7MIT/Ou1CbnVA=";
+ inherit (finalAttrs) version;
+ hash = "sha256-cVGpvMW7+ez8z4M1xFGsqCBPWgmS4GIqr69IKHbO5Pc=";
};
- build-system = [
- setuptools
- ];
+ build-system = [ setuptools ];
- pythonImportsCheck = [
- "regex-stubs"
- ];
+ pythonImportsCheck = [ "regex-stubs" ];
+
+ # Module has no tests
+ doCheck = false;
meta = {
description = "Typing stubs for regex";
@@ -30,4 +29,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dwoffinden ];
};
-}
+})