From 91c302095477fc38e7614e35057ac80de56628e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 19 Jan 2023 11:08:47 -0800 Subject: [PATCH 1/2] taskflow: 3.4.0 -> 3.5.0 Diff: https://github.com/taskflow/taskflow/compare/v3.4.0...v3.5.0 Changelog: https://taskflow.github.io/taskflow/release-3-5-0.html --- pkgs/development/libraries/taskflow/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/taskflow/default.nix b/pkgs/development/libraries/taskflow/default.nix index dd2f8fb39144..cde327c550eb 100644 --- a/pkgs/development/libraries/taskflow/default.nix +++ b/pkgs/development/libraries/taskflow/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "taskflow"; - version = "3.4.0"; + version = "3.5.0"; src = fetchFromGitHub { owner = "taskflow"; repo = "taskflow"; rev = "v${version}"; - hash = "sha256-5bTTV/WAxslHQ+hvATtUUA1h3MuNzwVTlYMbD/sINRM="; + hash = "sha256-UUWJENGn60YQdUSQ55uL+/3xt/JUsVuKnqm/ef7wPVM="; }; patches = [ From c4604c8ed4897d0b6cbda95d9787a0cb0161b955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 19 Jan 2023 11:23:34 -0800 Subject: [PATCH 2/2] python311Packages.pytest-shutil: only requires contextlib2 on Python 2 see https://github.com/man-group/pytest-plugins/pull/144 --- pkgs/development/python-modules/pytest-shutil/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-shutil/default.nix b/pkgs/development/python-modules/pytest-shutil/default.nix index 64b0ff0c1d0d..6316701787c2 100644 --- a/pkgs/development/python-modules/pytest-shutil/default.nix +++ b/pkgs/development/python-modules/pytest-shutil/default.nix @@ -11,7 +11,6 @@ , mock , path , execnet -, contextlib2 , termcolor , six @@ -32,6 +31,7 @@ buildPythonPackage rec { postPatch = '' substituteInPlace setup.py \ + --replace "contextlib2" 'contextlib2;python_version<"3"' \ --replace "path.py" "path" ''; @@ -44,7 +44,6 @@ buildPythonPackage rec { mock path execnet - contextlib2 termcolor six ];