0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00
Fabian Affolter 2025-03-05 09:01:59 +01:00
parent a6f4ddb593
commit 2b254336c2

View file

@ -4,6 +4,7 @@
cwl-upgrader, cwl-upgrader,
cwlformat, cwlformat,
fetchFromGitHub, fetchFromGitHub,
jsonschema,
packaging, packaging,
pytest-mock, pytest-mock,
pytest-xdist, pytest-xdist,
@ -18,7 +19,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "cwl-utils"; pname = "cwl-utils";
version = "0.36"; version = "0.37";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -27,7 +28,7 @@ buildPythonPackage rec {
owner = "common-workflow-language"; owner = "common-workflow-language";
repo = "cwl-utils"; repo = "cwl-utils";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-ZSRwkZkBZ2cM0ZBvyI628xjbiho2FuFJnCYDZl3IrHs="; hash = "sha256-OD8Nz8SIqB0Ie3S5663sQg3GjlCkC+qBvOXM9HZNuQU=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];
@ -43,6 +44,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
cwlformat cwlformat
jsonschema
pytest-mock pytest-mock
pytest-xdist pytest-xdist
pytestCheckHook pytestCheckHook
@ -60,6 +62,7 @@ buildPythonPackage rec {
# Don't run tests which require network access # Don't run tests which require network access
"test_remote_packing" "test_remote_packing"
"test_remote_packing_github_soft_links" "test_remote_packing_github_soft_links"
"test_cwl_inputs_to_jsonschema"
]; ];
meta = with lib; { meta = with lib; {