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