Merge pull request #211637 from dotlambda/taskflow-3.5.0

taskflow: 3.4.0 -> 3.5.0
This commit is contained in:
Nick Cao 2023-01-21 14:46:02 +08:00 committed by GitHub
commit 04886b4f90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -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 = [

View File

@ -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
];