[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66690] [PATCH 6/7] gnu: Add python-cwl-utils.
From: |
Arun Isaac |
Subject: |
[bug#66690] [PATCH 6/7] gnu: Add python-cwl-utils. |
Date: |
Mon, 23 Oct 2023 09:09:45 +0100 |
* gnu/packages/bioinformatics.scm (python-cwl-utils): New variable.
---
gnu/packages/bioinformatics.scm | 43 +++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 79dbf0f2e6..2deec5368e 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4537,6 +4537,49 @@ (define-public python-cwl-upgrader
and v1.1 to v1.2.")
(license license:asl2.0)))
+(define-public python-cwl-utils
+ (package
+ (name "python-cwl-utils")
+ (version "0.29")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cwl-utils" version))
+ (sha256
+ (base32
+ "0rfm49wwnn4bcalkfrhvlmn7bhdf6nnwcr8fvx5gqxqyd4b5izf5"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list "-k"
+ (string-append "not test_graph_split"
+ " and not test_load_document_with_remote_uri"
+ " and not test_remote_packing"
+ " and not test_remote_packing_github_soft_links"
+ " and not
test_value_from_two_concatenated_expressions"))))
+ (inputs
+ (list node))
+ (native-inputs
+ (list python-mypy-extensions
+ python-pytest
+ python-pytest-mock
+ python-pytest-runner))
+ (propagated-inputs
+ (list python-cwl-upgrader
+ python-cwlformat
+ python-packaging
+ python-rdflib
+ python-requests
+ python-ruamel.yaml
+ python-schema-salad))
+ (home-page "https://github.com/common-workflow-language/cwl-utils")
+ (synopsis "Python utilities for CWL")
+ (description "@code{python-cwl-utils} provides python utilities and
+autogenerated classes for loading and parsing CWL v1.0, CWL v1.1, and CWL v1.2
+documents.")
+ (license license:asl2.0)))
+
(define-public cwltool
(package
(name "cwltool")
--
2.41.0
- [bug#66690] [PATCH 0/7] Upgrade cwltool, Arun Isaac, 2023/10/22
- [bug#66690] [PATCH 1/7] gnu: python-ruamel.yaml.clib: Update to 0.2.7., Arun Isaac, 2023/10/23
- [bug#66690] [PATCH 4/7] gnu: Add python-cwlformat., Arun Isaac, 2023/10/23
- [bug#66690] [PATCH 3/7] gnu: python-schema-salad: Update to 8.4.20230927144413., Arun Isaac, 2023/10/23
- [bug#66690] [PATCH 5/7] gnu: Add python-cwl-upgrader., Arun Isaac, 2023/10/23
- [bug#66690] [PATCH 2/7] gnu: python-ruamel.yaml: Update to 0.17.40., Arun Isaac, 2023/10/23
- [bug#66690] [PATCH 7/7] gnu: cwltool: Update to 3.1.20230601100705., Arun Isaac, 2023/10/23
- [bug#66690] [PATCH 6/7] gnu: Add python-cwl-utils.,
Arun Isaac <=