From a6f4ddb593b18d80ba6d3f97637ec2f49daecbb5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 5 Mar 2025 08:59:22 +0100 Subject: [PATCH 1/3] python313Packages.schema-salad: 8.8.20241206093842 -> 8.8.20250205075315 Diff: https://github.com/common-workflow-language/schema_salad/compare/refs/tags/8.8.20241206093842...8.8.20250205075315 Changelog: https://github.com/common-workflow-language/schema_salad/releases/tag/8.8.20250205075315 --- pkgs/development/python-modules/schema-salad/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/schema-salad/default.nix b/pkgs/development/python-modules/schema-salad/default.nix index 736c77f9c133..019a86f9a05e 100644 --- a/pkgs/development/python-modules/schema-salad/default.nix +++ b/pkgs/development/python-modules/schema-salad/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "schema-salad"; - version = "8.8.20241206093842"; + version = "8.8.20250205075315"; pyproject = true; disabled = pythonOlder "3.9"; @@ -31,12 +31,14 @@ buildPythonPackage rec { owner = "common-workflow-language"; repo = "schema_salad"; tag = version; - hash = "sha256-DUBrKBFphOa5hbEtsLVSI186TrhCkiNPtqlA61MENx0="; + hash = "sha256-Lev5daC3RCuXN1GJjOwplTx9PB3HTNZdNNzusn2dBaI="; }; + pythonRelaxDeps = [ "mistune" ]; + postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "mypy[mypyc]==1.13.0" "mypy" + --replace-fail "mypy[mypyc]==1.15.0" "mypy" ''; build-system = [ setuptools-scm ]; @@ -65,6 +67,7 @@ buildPythonPackage rec { disabledTests = [ "test_load_by_yaml_metaschema" + "test_detect_changes_in_html" # Setup for these tests requires network access "test_secondaryFiles" "test_outputBinding" From 2b254336c216b5ef0e7d1d42891a851d2092856c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 5 Mar 2025 09:01:59 +0100 Subject: [PATCH 2/3] python313Packages.cwl-utils: 0.36 -> 0.37 Diff: https://github.com/common-workflow-language/cwl-utils/compare/refs/tags/v0.36...v0.37 Changelog: https://github.com/common-workflow-language/cwl-utils/releases/tag/v0.37 --- pkgs/development/python-modules/cwl-utils/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cwl-utils/default.nix b/pkgs/development/python-modules/cwl-utils/default.nix index bc8ee3baf3e5..7fe9475b469e 100644 --- a/pkgs/development/python-modules/cwl-utils/default.nix +++ b/pkgs/development/python-modules/cwl-utils/default.nix @@ -4,6 +4,7 @@ cwl-upgrader, cwlformat, fetchFromGitHub, + jsonschema, packaging, pytest-mock, pytest-xdist, @@ -18,7 +19,7 @@ buildPythonPackage rec { pname = "cwl-utils"; - version = "0.36"; + version = "0.37"; pyproject = true; disabled = pythonOlder "3.8"; @@ -27,7 +28,7 @@ buildPythonPackage rec { owner = "common-workflow-language"; repo = "cwl-utils"; tag = "v${version}"; - hash = "sha256-ZSRwkZkBZ2cM0ZBvyI628xjbiho2FuFJnCYDZl3IrHs="; + hash = "sha256-OD8Nz8SIqB0Ie3S5663sQg3GjlCkC+qBvOXM9HZNuQU="; }; build-system = [ setuptools ]; @@ -43,6 +44,7 @@ buildPythonPackage rec { nativeCheckInputs = [ cwlformat + jsonschema pytest-mock pytest-xdist pytestCheckHook @@ -60,6 +62,7 @@ buildPythonPackage rec { # Don't run tests which require network access "test_remote_packing" "test_remote_packing_github_soft_links" + "test_cwl_inputs_to_jsonschema" ]; meta = with lib; { From 2ad000b54039913901f37488f49045fb4298c9b7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 5 Mar 2025 09:29:37 +0100 Subject: [PATCH 3/3] cwltool: 3.1.20241217163858 -> 3.1.20250110105449 Diff: https://github.com/common-workflow-language/cwltool/compare/refs/tags/3.1.20241217163858...3.1.20250110105449 Changelog: https://github.com/common-workflow-language/cwltool/releases/tag/3.1.20250110105449 --- pkgs/by-name/cw/cwltool/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cw/cwltool/package.nix b/pkgs/by-name/cw/cwltool/package.nix index 15f387b7e131..57cf3be6963c 100644 --- a/pkgs/by-name/cw/cwltool/package.nix +++ b/pkgs/by-name/cw/cwltool/package.nix @@ -25,14 +25,14 @@ with py.pkgs; py.pkgs.buildPythonApplication rec { pname = "cwltool"; - version = "3.1.20241217163858"; + version = "3.1.20250110105449"; pyproject = true; src = fetchFromGitHub { owner = "common-workflow-language"; repo = "cwltool"; tag = version; - hash = "sha256-46x/7ewnt1eTu+1GdmPUExpiFfYE3mN8N8VFMM4r1Vk="; + hash = "sha256-V0CQiNkIw81s6e9224qcfbsOqBvMo34q+lRURpRetKs="; }; postPatch = ''