python3Packages.cwl-utils: 0.40 -> 0.41

Changelog: https://github.com/common-workflow-language/cwl-utils/releases/tag/v0.41
This commit is contained in:
Fabian Affolter
2026-04-06 18:41:05 +02:00
parent 46f7e7ea2c
commit 99de7935b4
@@ -4,6 +4,7 @@
cwl-upgrader,
cwlformat,
fetchFromGitHub,
hatchling,
jsonschema,
packaging,
pytest-mock,
@@ -13,22 +14,21 @@
requests,
ruamel-yaml,
schema-salad,
setuptools,
}:
buildPythonPackage rec {
pname = "cwl-utils";
version = "0.40";
version = "0.41";
pyproject = true;
src = fetchFromGitHub {
owner = "common-workflow-language";
repo = "cwl-utils";
tag = "v${version}";
hash = "sha256-A9+JvtSTPfXK/FGJ8pplT06kkuatZu1fgjjmg74oTvE=";
hash = "sha256-78Kx+LCEcPE7qsV6MFtfSY6tVj5KZhifFOib7beCU2c=";
};
build-system = [ setuptools ];
build-system = [ hatchling ];
dependencies = [
cwl-upgrader
@@ -62,15 +62,6 @@ buildPythonPackage rec {
"test_cwl_inputs_to_jsonschema"
];
disabledTestPaths = [
# Tests require podman
"tests/test_docker_extract.py"
# Tests requires singularity
"tests/test_js_sandbox.py"
# Circular dependencies
"tests/test_graph_split.py"
];
meta = {
description = "Utilities for CWL";
homepage = "https://github.com/common-workflow-language/cwl-utils";