* [bug#69736] [PATCH 0/7] Add toil
@ 2024-03-11 18:11 Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 1/7] gnu: Add python-typing-extensions-4.10 Arun Isaac
` (7 more replies)
0 siblings, 8 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:11 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac
This patchset adds toil.
The linter warns that there is a collision between different versions of
python-pyparsing. However, it is not possible to avoid that collision without
upgrading python-pyparsing. And, the python-pyparsing upgrade is very
complex. It requires rebuilding the world. It also introduces a dependency
cycle since the latest version of python-pyparsing switches to the
pyproject-build-system.
Arun Isaac (7):
gnu: Add python-typing-extensions-4.10.
gnu: Add python-pypubsub.
gnu: Add python-addict.
gnu: Add python-prefixed.
gnu: Add python-enlighten.
gnu: Add python-cwltool.
gnu: Add python-toil.
gnu/packages/bioinformatics.scm | 74 +++++++++++++++++++++++++++++
gnu/packages/python-build.scm | 13 ++++++
gnu/packages/python-xyz.scm | 83 +++++++++++++++++++++++++++++++++
3 files changed, 170 insertions(+)
base-commit: 001dfb89579856b8695b33b59f484f36e313347f
--
2.41.0
^ permalink raw reply [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 1/7] gnu: Add python-typing-extensions-4.10.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 2/7] gnu: Add python-pypubsub Arun Isaac
` (6 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, jgart
* gnu/packages/python-build.scm (python-typing-extensions-4.10): New variable.
Change-Id: I82d9538e76353b39cce082020a939e1a8fb7badc
---
gnu/packages/python-build.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 2ea457cdba..adf26f7f8b 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2020, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2022 Garek Dyszel <garekdyszel@disroot.org>
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
+;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of GNU Guix.
@@ -252,6 +253,18 @@ (define-public python-typing-extensions
@end enumerate\n")
(license license:psfl)))
+;; TODO: Remove this package once python-typing-extensions is updated.
+(define-public python-typing-extensions-4.10
+ (package
+ (inherit python-typing-extensions)
+ (version "4.10.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "typing_extensions" version))
+ (sha256
+ (base32
+ "1jxkj4pni8pdyrn79sq441lsp40xzw363n0qvfc6zfcgkv4dgaxh"))))))
+
\f
;;;
;;; Python builder packages.
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 2/7] gnu: Add python-pypubsub.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 1/7] gnu: Add python-typing-extensions-4.10 Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 3/7] gnu: Add python-addict Arun Isaac
` (5 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, jgart
* gnu/packages/python-xyz.scm (python-pypubsub): New variable.
Change-Id: Id8f06bd592b6273cff282aa628f05503a67519b0
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0c72caeca0..ed9b1c9140 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7768,6 +7768,32 @@ (define-public python-blinker
interested parties to subscribe to events, or \"signals\".")
(license license:expat)))
+(define-public python-pypubsub
+ (package
+ (name "python-pypubsub")
+ (version "4.0.3")
+ ;; There is no source tarball on PyPI.
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/schollii/pypubsub")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "02j74w28wzmdvxkk8i561ywjgizjifq3hgcl080yj0rvkd3wivlb"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/schollii/pypubsub")
+ (synopsis "Python publish-subscribe library")
+ (description "@code{python-pypubsub} provides a pure Python
+publish-subscribe API to facilitate event-based or message-based architecture
+in a single-process application. It is centered on the notion of a topic;
+senders publish messages of a given topic, and listeners subscribe to messages
+of a given topic, all inside the same process. The package also supports a
+variety of advanced features that facilitate debugging and maintaining topics
+and messages in larger desktop or server-based applications.")
+ (license license:bsd-2)))
+
(define-public pelican
(package
(name "pelican")
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 3/7] gnu: Add python-addict.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 1/7] gnu: Add python-typing-extensions-4.10 Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 2/7] gnu: Add python-pypubsub Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 4/7] gnu: Add python-prefixed Arun Isaac
` (4 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, jgart
* gnu/packages/python-xyz.scm (python-addict): New variable.
Change-Id: I1554d17495bf9337067422f2118f8b46e51abead
---
gnu/packages/python-xyz.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ed9b1c9140..34b894a351 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23058,6 +23058,23 @@ (define-public python-attrdict3
both as keys and as attributes.")
(license license:expat)))
+(define-public python-addict
+ (package
+ (name "python-addict")
+ (version "2.4.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "addict" version))
+ (sha256
+ (base32
+ "1574sicy5ydx9pvva3lbx8qp56z9jbdwbj26aqgjhyh61q723cmk"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/mewwts/addict")
+ (synopsis "Python dictionary with attribute accessible values")
+ (description "@code{python-addict} provides dictionaries whose items can
+be get and set using both attribute and item syntax.")
+ (license license:expat)))
+
(define-public python-attrs
(package
(name "python-attrs")
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 4/7] gnu: Add python-prefixed.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
` (2 preceding siblings ...)
2024-03-11 18:22 ` [bug#69736] [PATCH 3/7] gnu: Add python-addict Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 5/7] gnu: Add python-enlighten Arun Isaac
` (3 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, jgart
* gnu/packages/python-xyz.scm (python-prefixed): New variable.
Change-Id: I1398953059feb740dfdd9abe12bd0aa7abe3714e
---
gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 34b894a351..87204b392f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32516,6 +32516,24 @@ (define-public python-quicktions
is the cythonized version of @code{fractions.Fraction}.")
(license license:psfl)))
+(define-public python-prefixed
+ (package
+ (name "python-prefixed")
+ (version "0.7.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "prefixed" version))
+ (sha256
+ (base32
+ "1sdvxwy4kvcxvnq1nx70j1ccx5ga6wdb478vqd5azf1fc1gd2m0b"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/Rockhopper-Technologies/prefixed")
+ (synopsis "Prefixed alternative numeric library")
+ (description "@code{python-prefixed} provides an alternative
+implementation of the built-in float which supports formatted output with
+SI (decimal) and IEC (binary) prefixes.")
+ (license license:mpl2.0)))
+
(define-public python-pathvalidate
(package
(name "python-pathvalidate")
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 5/7] gnu: Add python-enlighten.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
` (3 preceding siblings ...)
2024-03-11 18:22 ` [bug#69736] [PATCH 4/7] gnu: Add python-prefixed Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 6/7] gnu: Add python-cwltool Arun Isaac
` (2 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, jgart
* gnu/packages/python-xyz.scm (python-enlighten): New variable.
Change-Id: Ifcc1e71cf012eb3b7e2c0ceef7d288cea9fa6a91
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 87204b392f..755f64e361 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17869,6 +17869,28 @@ (define-public python-progressbar33
;; Either or both of these licenses may be selected.
(license (list license:lgpl2.1+ license:bsd-3))))
+(define-public python-enlighten
+ (package
+ (name "python-enlighten")
+ (version "1.12.4")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "enlighten" version))
+ (sha256
+ (base32
+ "0psvglhi0c7d7pdk9rfb8scnv3xbq2fz78619x2mxvz094mxkwvm"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs
+ (list python-blessed python-prefixed))
+ (home-page "https://github.com/Rockhopper-Technologies/enlighten")
+ (synopsis "Console progress bar library")
+ (description "@code{python-enlighten} is a console progress bar library
+for Python. The main advantage of Enlighten is that it allows writing to
+stdout and stderr without any redirection or additional code---just print or
+log as you normally would. Enlighten also includes experimental support for
+Jupyter Notebooks.")
+ (license license:mpl2.0)))
+
(define-public python-colorama
(package
(name "python-colorama")
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 6/7] gnu: Add python-cwltool.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
` (4 preceding siblings ...)
2024-03-11 18:22 ` [bug#69736] [PATCH 5/7] gnu: Add python-enlighten Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 7/7] gnu: Add python-toil Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
7 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac, Arun Isaac
* gnu/packages/bioinformatics.scm (python-cwltool): New variable.
Change-Id: Ic374d4c02b69c4e6c923d1cc17e629d4a3a6221c
---
gnu/packages/bioinformatics.scm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b8ecea013c..68577ded17 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5326,6 +5326,18 @@ (define-public cwltool
CWL descriptions.")
(license license:asl2.0)))
+;; python-toil tightly integrates with cwltool using it as a library. So,
+;; create a library version of cwltool where inputs become propagated inputs.
+(define-public python-cwltool
+ (package
+ (inherit cwltool)
+ (name "python-cwltool")
+ (inputs
+ (list node))
+ (propagated-inputs
+ (modify-inputs (package-inputs cwltool)
+ (delete "node")))))
+
(define-public python-dendropy
(package
(name "python-dendropy")
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 7/7] gnu: Add python-toil.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
` (5 preceding siblings ...)
2024-03-11 18:22 ` [bug#69736] [PATCH 6/7] gnu: Add python-cwltool Arun Isaac
@ 2024-03-11 18:22 ` Arun Isaac
2024-07-01 2:54 ` [bug#69736] [PATCH 0/7] Add toil jgart via Guix-patches via
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
7 siblings, 1 reply; 16+ messages in thread
From: Arun Isaac @ 2024-03-11 18:22 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac, Arun Isaac
* gnu/packages/bioinformatics.scm (python-toil): New variable.
Change-Id: I1a6c071eaa9169c1e0cd7c74d1117490ee7bf267
---
gnu/packages/bioinformatics.scm | 62 +++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 68577ded17..aed57796cd 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -87,6 +87,7 @@ (define-module (gnu packages bioinformatics)
#:use-module (gnu packages databases)
#:use-module (gnu packages datastructures)
#:use-module (gnu packages dlang)
+ #:use-module (gnu packages docker)
#:use-module (gnu packages file)
#:use-module (gnu packages flex)
#:use-module (gnu packages gawk)
@@ -5338,6 +5339,67 @@ (define-public python-cwltool
(modify-inputs (package-inputs cwltool)
(delete "node")))))
+(define-public python-toil
+ (package
+ (name "python-toil")
+ (version "6.1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "toil" version))
+ (sha256
+ (base32
+ "0hwaihnncsfxw0sf3iigvgw6nylrb56lpk8qjadkgazr98dsp4ha"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-optional-features
+ (lambda _
+ (substitute* "requirements-cwl.txt"
+ ;; Loosen version restrictions on ruamel.yaml.
+ (("ruamel.yaml[<>=.,[:digit:]]*\n") "ruamel.yaml\n")
+ ;; Remove optional dependency on galaxy-util and
+ ;; galaxy-tool-util. TODO: Package these and restore these
+ ;; dependencies.
+ (("galaxy-util[^\n]*") "")
+ (("galaxy-tool-util[^\n]*") ""))
+ ;; Disable optional wdl, wes and mesos features. We don't yet
+ ;; have dependencies packaged for them. TODO: Package these
+ ;; dependencies and enable these features.
+ (substitute* "setup.py"
+ (("\"wdl\",") "")
+ (("toil-cwl-runner = toil.cwl.cwltoil:main \\[cwl\\]")
+ "toil-cwl-runner = toil.cwl.cwltoil:main")
+ (("'toil-wdl-runner = toil.wdl.wdltoil:main \\[wdl\\]',") "")
+ (("'toil-wes-cwl-runner = toil.server.cli.wes_cwl_runner:main \\[server\\]',") "")
+ (("'_toil_mesos_executor = toil.batchSystems.mesos.executor:main \\[mesos\\]',") "")))))))
+ (propagated-inputs
+ (list python-addict
+ python-cachecontrol
+ python-configargparse
+ python-cwltool
+ python-dateutil
+ python-dill
+ python-docker
+ python-enlighten
+ python-psutil
+ python-pypubsub
+ python-pytz
+ python-pyyaml
+ python-requests
+ python-ruamel.yaml
+ python-typing-extensions-4.10
+ python-urllib3))
+ (home-page "https://github.com/DataBiosphere/toil")
+ (synopsis "Scalable, efficient and cross-platform workflow engine")
+ (description "Toil is a scalable, efficient, cross-platform pipeline
+management system, written entirely in Python, and designed around the
+principles of functional programming.")
+ (license (list license:asl2.0 ;; main license
+ license:expat)))) ;; src/toil/batchSystems/lsf.py and
+ ;; src/toil/batchSystems/lsfHelper.py
+
(define-public python-dendropy
(package
(name "python-dendropy")
--
2.41.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 0/7] Add toil
2024-03-11 18:22 ` [bug#69736] [PATCH 7/7] gnu: Add python-toil Arun Isaac
@ 2024-07-01 2:54 ` jgart via Guix-patches via
2024-07-03 15:05 ` Arun Isaac
0 siblings, 1 reply; 16+ messages in thread
From: jgart via Guix-patches via @ 2024-07-01 2:54 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac
Hi Arun,
This patch no longer applies. Would you be interested in sending an
updated one?
all best,
jgart
^ permalink raw reply [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH 0/7] Add toil
2024-07-01 2:54 ` [bug#69736] [PATCH 0/7] Add toil jgart via Guix-patches via
@ 2024-07-03 15:05 ` Arun Isaac
0 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:05 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac, jgart
Hi jgart,
I'll send a new v2 patchset. But, this patchset won't build without an
update to python-docker. I updated python-docker earlier, but had to
revert because it broke docker-compose. See commit
92664f4ab38fc9f5ac70fe5946e75b20cecdf482
Regards,
Arun
^ permalink raw reply [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub.
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
` (6 preceding siblings ...)
2024-03-11 18:22 ` [bug#69736] [PATCH 7/7] gnu: Add python-toil Arun Isaac
@ 2024-07-03 15:07 ` Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 2/6] gnu: Add python-addict Arun Isaac
` (4 more replies)
7 siblings, 5 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:07 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, jgart, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour
* gnu/packages/python-xyz.scm (python-pypubsub): New variable.
Change-Id: Id8f06bd592b6273cff282aa628f05503a67519b0
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 36f75b4b40..328750b38b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8214,6 +8214,32 @@ (define-public python-blinker
interested parties to subscribe to events, or \"signals\".")
(license license:expat)))
+(define-public python-pypubsub
+ (package
+ (name "python-pypubsub")
+ (version "4.0.3")
+ ;; There is no source tarball on PyPI.
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/schollii/pypubsub")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "02j74w28wzmdvxkk8i561ywjgizjifq3hgcl080yj0rvkd3wivlb"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/schollii/pypubsub")
+ (synopsis "Python publish-subscribe library")
+ (description "@code{python-pypubsub} provides a pure Python
+publish-subscribe API to facilitate event-based or message-based architecture
+in a single-process application. It is centered on the notion of a topic;
+senders publish messages of a given topic, and listeners subscribe to messages
+of a given topic, all inside the same process. The package also supports a
+variety of advanced features that facilitate debugging and maintaining topics
+and messages in larger desktop or server-based applications.")
+ (license license:bsd-2)))
+
(define-public pelican
(package
(name "pelican")
base-commit: 4b3a553ca5ba5ac190739309eb5f7aa8170cf2a8
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH v2 2/6] gnu: Add python-addict.
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
@ 2024-07-03 15:07 ` Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 3/6] gnu: Add python-prefixed Arun Isaac
` (3 subsequent siblings)
4 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:07 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, jgart, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour
* gnu/packages/python-xyz.scm (python-addict): New variable.
Change-Id: I1554d17495bf9337067422f2118f8b46e51abead
---
gnu/packages/python-xyz.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 328750b38b..06453709de 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23841,6 +23841,23 @@ (define-public python-attrdict3
both as keys and as attributes.")
(license license:expat)))
+(define-public python-addict
+ (package
+ (name "python-addict")
+ (version "2.4.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "addict" version))
+ (sha256
+ (base32
+ "1574sicy5ydx9pvva3lbx8qp56z9jbdwbj26aqgjhyh61q723cmk"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/mewwts/addict")
+ (synopsis "Python dictionary with attribute accessible values")
+ (description "@code{python-addict} provides dictionaries whose items can
+be get and set using both attribute and item syntax.")
+ (license license:expat)))
+
(define-public python-attrs
(package
(name "python-attrs")
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH v2 3/6] gnu: Add python-prefixed.
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 2/6] gnu: Add python-addict Arun Isaac
@ 2024-07-03 15:07 ` Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 4/6] gnu: Add python-enlighten Arun Isaac
` (2 subsequent siblings)
4 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:07 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, jgart, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour
* gnu/packages/python-xyz.scm (python-prefixed): New variable.
Change-Id: I1398953059feb740dfdd9abe12bd0aa7abe3714e
---
gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 06453709de..993e0e0f6b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33685,6 +33685,24 @@ (define-public python-quicktions
is the cythonized version of @code{fractions.Fraction}.")
(license license:psfl)))
+(define-public python-prefixed
+ (package
+ (name "python-prefixed")
+ (version "0.7.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "prefixed" version))
+ (sha256
+ (base32
+ "1sdvxwy4kvcxvnq1nx70j1ccx5ga6wdb478vqd5azf1fc1gd2m0b"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/Rockhopper-Technologies/prefixed")
+ (synopsis "Prefixed alternative numeric library")
+ (description "@code{python-prefixed} provides an alternative
+implementation of the built-in float which supports formatted output with
+SI (decimal) and IEC (binary) prefixes.")
+ (license license:mpl2.0)))
+
(define-public python-pathvalidate
(package
(name "python-pathvalidate")
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH v2 4/6] gnu: Add python-enlighten.
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 2/6] gnu: Add python-addict Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 3/6] gnu: Add python-prefixed Arun Isaac
@ 2024-07-03 15:07 ` Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 5/6] gnu: Add python-cwltool Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 6/6] gnu: Add python-toil Arun Isaac
4 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:07 UTC (permalink / raw)
To: 69736
Cc: Arun Isaac, Arun Isaac, jgart, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour
* gnu/packages/python-xyz.scm (python-enlighten): New variable.
Change-Id: Ifcc1e71cf012eb3b7e2c0ceef7d288cea9fa6a91
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 993e0e0f6b..8982813479 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18639,6 +18639,28 @@ (define-public python-progressbar33
;; Either or both of these licenses may be selected.
(license (list license:lgpl2.1+ license:bsd-3))))
+(define-public python-enlighten
+ (package
+ (name "python-enlighten")
+ (version "1.12.4")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "enlighten" version))
+ (sha256
+ (base32
+ "0psvglhi0c7d7pdk9rfb8scnv3xbq2fz78619x2mxvz094mxkwvm"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs
+ (list python-blessed python-prefixed))
+ (home-page "https://github.com/Rockhopper-Technologies/enlighten")
+ (synopsis "Console progress bar library")
+ (description "@code{python-enlighten} is a console progress bar library
+for Python. The main advantage of Enlighten is that it allows writing to
+stdout and stderr without any redirection or additional code---just print or
+log as you normally would. Enlighten also includes experimental support for
+Jupyter Notebooks.")
+ (license license:mpl2.0)))
+
(define-public python-colorama
(package
(name "python-colorama")
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH v2 5/6] gnu: Add python-cwltool.
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
` (2 preceding siblings ...)
2024-07-03 15:07 ` [bug#69736] [PATCH v2 4/6] gnu: Add python-enlighten Arun Isaac
@ 2024-07-03 15:07 ` Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 6/6] gnu: Add python-toil Arun Isaac
4 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:07 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac, Arun Isaac, jgart
* gnu/packages/bioinformatics.scm (python-cwltool): New variable.
Change-Id: Ic374d4c02b69c4e6c923d1cc17e629d4a3a6221c
---
gnu/packages/bioinformatics.scm | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 063017a8aa..b83e18ea78 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5816,6 +5816,18 @@ (define-public cwltool
CWL descriptions.")
(license license:asl2.0)))
+;; python-toil tightly integrates with cwltool using it as a library. So,
+;; create a library version of cwltool where inputs become propagated inputs.
+(define-public python-cwltool
+ (package
+ (inherit cwltool)
+ (name "python-cwltool")
+ (inputs
+ (list node))
+ (propagated-inputs
+ (modify-inputs (package-inputs cwltool)
+ (delete "node")))))
+
(define-public python-dendropy
(package
(name "python-dendropy")
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [bug#69736] [PATCH v2 6/6] gnu: Add python-toil.
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
` (3 preceding siblings ...)
2024-07-03 15:07 ` [bug#69736] [PATCH v2 5/6] gnu: Add python-cwltool Arun Isaac
@ 2024-07-03 15:07 ` Arun Isaac
4 siblings, 0 replies; 16+ messages in thread
From: Arun Isaac @ 2024-07-03 15:07 UTC (permalink / raw)
To: 69736; +Cc: Arun Isaac, Arun Isaac, jgart
* gnu/packages/bioinformatics.scm (python-toil): New variable.
Change-Id: I1a6c071eaa9169c1e0cd7c74d1117490ee7bf267
---
gnu/packages/bioinformatics.scm | 62 +++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b83e18ea78..6d15b1a226 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -88,6 +88,7 @@ (define-module (gnu packages bioinformatics)
#:use-module (gnu packages databases)
#:use-module (gnu packages datastructures)
#:use-module (gnu packages dlang)
+ #:use-module (gnu packages docker)
#:use-module (gnu packages file)
#:use-module (gnu packages flex)
#:use-module (gnu packages gawk)
@@ -5828,6 +5829,67 @@ (define-public python-cwltool
(modify-inputs (package-inputs cwltool)
(delete "node")))))
+(define-public python-toil
+ (package
+ (name "python-toil")
+ (version "6.1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "toil" version))
+ (sha256
+ (base32
+ "0hwaihnncsfxw0sf3iigvgw6nylrb56lpk8qjadkgazr98dsp4ha"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-optional-features
+ (lambda _
+ (substitute* "requirements-cwl.txt"
+ ;; Loosen version restrictions on ruamel.yaml.
+ (("ruamel.yaml[<>=.,[:digit:]]*\n") "ruamel.yaml\n")
+ ;; Remove optional dependency on galaxy-util and
+ ;; galaxy-tool-util. TODO: Package these and restore these
+ ;; dependencies.
+ (("galaxy-util[^\n]*") "")
+ (("galaxy-tool-util[^\n]*") ""))
+ ;; Disable optional wdl, wes and mesos features. We don't yet
+ ;; have dependencies packaged for them. TODO: Package these
+ ;; dependencies and enable these features.
+ (substitute* "setup.py"
+ (("\"wdl\",") "")
+ (("toil-cwl-runner = toil.cwl.cwltoil:main \\[cwl\\]")
+ "toil-cwl-runner = toil.cwl.cwltoil:main")
+ (("'toil-wdl-runner = toil.wdl.wdltoil:main \\[wdl\\]',") "")
+ (("'toil-wes-cwl-runner = toil.server.cli.wes_cwl_runner:main \\[server\\]',") "")
+ (("'_toil_mesos_executor = toil.batchSystems.mesos.executor:main \\[mesos\\]',") "")))))))
+ (propagated-inputs
+ (list python-addict
+ python-cachecontrol
+ python-configargparse
+ python-cwltool
+ python-dateutil
+ python-dill
+ python-docker
+ python-enlighten
+ python-psutil
+ python-pypubsub
+ python-pytz
+ python-pyyaml
+ python-requests
+ python-ruamel.yaml
+ python-typing-extensions-4.10
+ python-urllib3))
+ (home-page "https://github.com/DataBiosphere/toil")
+ (synopsis "Scalable, efficient and cross-platform workflow engine")
+ (description "Toil is a scalable, efficient, cross-platform pipeline
+management system, written entirely in Python, and designed around the
+principles of functional programming.")
+ (license (list license:asl2.0 ;; main license
+ license:expat)))) ;; src/toil/batchSystems/lsf.py and
+ ;; src/toil/batchSystems/lsfHelper.py
+
(define-public python-dendropy
(package
(name "python-dendropy")
--
2.45.2
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-07-03 15:08 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-11 18:11 [bug#69736] [PATCH 0/7] Add toil Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 1/7] gnu: Add python-typing-extensions-4.10 Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 2/7] gnu: Add python-pypubsub Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 3/7] gnu: Add python-addict Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 4/7] gnu: Add python-prefixed Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 5/7] gnu: Add python-enlighten Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 6/7] gnu: Add python-cwltool Arun Isaac
2024-03-11 18:22 ` [bug#69736] [PATCH 7/7] gnu: Add python-toil Arun Isaac
2024-07-01 2:54 ` [bug#69736] [PATCH 0/7] Add toil jgart via Guix-patches via
2024-07-03 15:05 ` Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 1/6] gnu: Add python-pypubsub Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 2/6] gnu: Add python-addict Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 3/6] gnu: Add python-prefixed Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 4/6] gnu: Add python-enlighten Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 5/6] gnu: Add python-cwltool Arun Isaac
2024-07-03 15:07 ` [bug#69736] [PATCH v2 6/6] gnu: Add python-toil Arun Isaac
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.