From 8682bb4c83c78103ecbb31f54c1081615db4d0fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 13 Apr 2025 12:51:55 -0700 Subject: [PATCH] python313Packages.pytest-repeat: 0.9.3 -> 0.9.4 Changelog: https://github.com/pytest-dev/pytest-repeat/blob/v0.9.4/CHANGES.rst --- .../development/python-modules/pytest-repeat/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pytest-repeat/default.nix b/pkgs/development/python-modules/pytest-repeat/default.nix index 8df24c2be1f8..8387f0302501 100644 --- a/pkgs/development/python-modules/pytest-repeat/default.nix +++ b/pkgs/development/python-modules/pytest-repeat/default.nix @@ -6,23 +6,20 @@ hatch-vcs, pytest, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "pytest-repeat"; - version = "0.9.3"; + version = "0.9.4"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { pname = "pytest_repeat"; inherit version; - hash = "sha256-/9ODbfzWe7JwvsZIszDiC+N9KWZEjEFIxAktHoq6gYU="; + hash = "sha256-2SrBTfqm/8/mkX5dFvDJvII4DBNbA8Kl9BLSY38iRIU="; }; - nativeBuildInputs = [ + build-system = [ hatchling hatch-vcs ];