gnu: snakemake: Update to 3.9.0.
* gnu/packages/python.scm (snakemake): Update to 3.9.0. [source]: Use 'pypi-uri'. [arguments]: Disable tests. [home-page]: Update.
This commit is contained in:
parent
972cf9be52
commit
7b93d86670
|
@ -5306,17 +5306,18 @@ of the structure, dynamics, and functions of complex networks.")
|
||||||
(define-public snakemake
|
(define-public snakemake
|
||||||
(package
|
(package
|
||||||
(name "snakemake")
|
(name "snakemake")
|
||||||
(version "3.2.1")
|
(version "3.9.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (pypi-uri "snakemake" version))
|
||||||
"https://pypi.python.org/packages/source/s/snakemake/snakemake-"
|
|
||||||
version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0fi4b63sj60hvi7rfydvmz2icl4wj74djw5sn2gl8hxd02qw4b91"))))
|
(base32 "1d48ql0010v9ls6mac7fz6j391gm4h74a64hqgw89s0vfqgdyzdl"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(home-page "https://bitbucket.org/johanneskoester/snakemake")
|
(arguments
|
||||||
|
;; TODO: Package missing test dependencies.
|
||||||
|
'(#:tests? #f))
|
||||||
|
(home-page "https://bitbucket.org/snakemake/snakemake/wiki/Home")
|
||||||
(synopsis "Python-based execution environment for make-like workflows")
|
(synopsis "Python-based execution environment for make-like workflows")
|
||||||
(description
|
(description
|
||||||
"Snakemake aims to reduce the complexity of creating workflows by
|
"Snakemake aims to reduce the complexity of creating workflows by
|
||||||
|
|
Loading…
Reference in New Issue