From d320d0b5ff8ed793589ad5d7355f4aed132a5377 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 9 Nov 2021 00:20:08 +0100 Subject: [PATCH] python3Packages.pytest-cases: 3.6.4 -> 3.6.5 --- .../python-modules/pytest-cases/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pytest-cases/default.nix b/pkgs/development/python-modules/pytest-cases/default.nix index b8c1ab527220..47f5bbb1fd0b 100644 --- a/pkgs/development/python-modules/pytest-cases/default.nix +++ b/pkgs/development/python-modules/pytest-cases/default.nix @@ -10,12 +10,14 @@ buildPythonPackage rec { pname = "pytest-cases"; - version = "3.6.4"; + version = "3.6.5"; + format = "setuptools"; + disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-m2oxE7q46TWadhZgpwTAHKep5ZN9LG1VNCRJkPz5W1E="; + sha256 = "sha256-JZfQI6dgYFHWUbCMuHD78eBi9svoV5zkX887V9xFLNw="; }; nativeBuildInputs = [ @@ -32,7 +34,8 @@ buildPythonPackage rec { ]; postPatch = '' - substituteInPlace setup.cfg --replace "pytest-runner" "" + substituteInPlace setup.cfg \ + --replace "pytest-runner" "" ''; # Tests have dependencies (pytest-harvest, pytest-steps) which @@ -40,7 +43,9 @@ buildPythonPackage rec { # makefun, pytest-*) have circular dependecies. doCheck = false; - pythonImportsCheck = [ "pytest_cases" ]; + pythonImportsCheck = [ + "pytest_cases" + ]; meta = with lib; { description = "Separate test code from test cases in pytest";