mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-pyflow.
* gnu/packages/python-science.scm (python-pyflow): New variable.
This commit is contained in:
parent
ad7c7b5bf6
commit
47f31c0afe
1 changed files with 22 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
||||
;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
||||
;;; Copyright © 2021 Roel Janssen <roel@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -439,6 +440,27 @@ (define-public python2-pandas
|
|||
"if 'NULL byte' in msg or 'line contains NUL' in msg:"))
|
||||
#t)))))))
|
||||
|
||||
(define-public python-pyflow
|
||||
(package
|
||||
(name "python-pyflow")
|
||||
(version "1.1.20")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/Illumina/pyflow/releases/download/v"
|
||||
version "/pyflow-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1bvfvviw58cndyn862qnv9nj3d9cd3a0dm4vc4sd9vwq8a6z1riv"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; There is no test suite.
|
||||
(home-page "https://illumina.github.io/pyflow/")
|
||||
(synopsis "Tool to manage tasks in a task dependency graph")
|
||||
(description "This package is a Python module to manage tasks in the
|
||||
context of a task dependency graph. It has some similarities to make.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python-bottleneck
|
||||
(package
|
||||
(name "python-bottleneck")
|
||||
|
|
Loading…
Reference in a new issue