Unverified Commit 3cd1d797 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.cucumber-tag-expressions: 8.1.0 -> 9.1.0 (#495101)

parents 81eec6f7 3e694e83
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -10,18 +10,23 @@

buildPythonPackage rec {
  pname = "cucumber-tag-expressions";
  version = "8.1.0";
  version = "9.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "cucumber";
    repo = "tag-expressions";
    tag = "v${version}";
    hash = "sha256-3uePEu+4StDP2IV3u/AUZLxxbVVegW7ZSUllWnXU8w0=";
    hash = "sha256-jkuez7C3YDGmv484Lmc5PszVbnVXkcC12RryvTJkxxg=";
  };

  sourceRoot = "${src.name}/python";

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "uv_build>=0.10.0,<0.11.0" uv_build
  '';

  build-system = [
    uv-build
  ];