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

View file

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