Commit 99de7935 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python3Packages.cwl-utils: 0.40 -> 0.41

parent 46f7e7ea
Loading
Loading
Loading
Loading
+4 −13
Original line number Diff line number Diff line
@@ -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";