Unverified Commit 3f6f41c7 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.types-regex: migrate to finalAttrs

- add doCheck
parent cd0fafc6
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -5,24 +5,23 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "types-regex";
  version = "2026.1.15.20260116";
  pyproject = true;

  src = fetchPypi {
    pname = "types_regex";
    inherit version;
    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 ];
  };
}
})