[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66690] [PATCH 4/7] gnu: Add python-cwlformat.
From: |
Arun Isaac |
Subject: |
[bug#66690] [PATCH 4/7] gnu: Add python-cwlformat. |
Date: |
Mon, 23 Oct 2023 09:09:43 +0100 |
* gnu/packages/bioinformatics.scm (python-cwlformat): New variable.
---
gnu/packages/bioinformatics.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index c6819316ae..3b2fc8de8a 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4484,6 +4484,33 @@ (define-public python-scrublet
doublets in single-cell RNA-seq data.")
(license license:expat)))
+(define-public python-cwlformat
+ (package
+ (name "python-cwlformat")
+ (version "2022.02.18")
+ (source
+ ;; The PyPI tarball is missing Readme.md. Readme.md is required for the
+ ;; build.
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rabix/cwl-format")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0agkz2w86k91rc9m5vx5hsqi5nm6fcmzkng6j99hjapz0r9233ql"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs
+ (list python-importlib-resources
+ python-ruamel.yaml))
+ (home-page "https://github.com/rabix/cwl-format")
+ (synopsis "Prettifier for CWL code")
+ (description "@code{python-cwlformat} is a specification and a reference
+implementation for a very opinionated @acronym{CWL, Common Workflow Language}
+code formatter. It outputs CWL in a standardized YAML format.")
+ (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 <=
- [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, 2023/10/23