From d953eef75f1e5094d7663744d8ea2dcccc11062b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 29 Sep 2024 17:06:33 +0200 Subject: [PATCH] python3Packages.pytest-cases: 3.8.5 -> 3.8.6 https://github.com/smarie/python-pytest-cases/releases/tag/3.8.6 --- .../python-modules/pytest-cases/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pytest-cases/default.nix b/pkgs/development/python-modules/pytest-cases/default.nix index 8741af9da335..d74ffcb45d2a 100644 --- a/pkgs/development/python-modules/pytest-cases/default.nix +++ b/pkgs/development/python-modules/pytest-cases/default.nix @@ -11,21 +11,22 @@ buildPythonPackage rec { pname = "pytest-cases"; - version = "3.8.5"; + version = "3.8.6"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchPypi { - inherit pname version; - hash = "sha256-ySBUGHhHp9MNirZwn7FnCoMOThkjS+cAyFyWttcQLBY="; + pname = "pytest_cases"; + inherit version; + hash = "sha256-XCTgqwy2+OgCpGm3llkGozPTuruHRYbrxW9+LL4afEQ="; }; - nativeBuildInputs = [ setuptools-scm ]; + build-system = [ setuptools-scm ]; buildInputs = [ pytest ]; - propagatedBuildInputs = [ + dependencies = [ decopatch makefun ];