guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: snakemake: Update to 3.9.0.


From: Marius Bakke
Subject: 02/02: gnu: snakemake: Update to 3.9.0.
Date: Thu, 15 Dec 2016 09:13:46 +0000 (UTC)

mbakke pushed a commit to branch python-tests
in repository guix.

commit 7b93d866708d1fae54aee86473ffde5bd64be055
Author: Marius Bakke <address@hidden>
Date:   Thu Dec 15 10:12:38 2016 +0100

    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.
---
 gnu/packages/python.scm |   13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 04ee836..cbe770d 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5306,17 +5306,18 @@ of the structure, dynamics, and functions of complex 
networks.")
 (define-public snakemake
   (package
     (name "snakemake")
-    (version "3.2.1")
+    (version "3.9.0")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append
-             "https://pypi.python.org/packages/source/s/snakemake/snakemake-";
-             version ".tar.gz"))
+       (uri (pypi-uri "snakemake" version))
        (sha256
-        (base32 "0fi4b63sj60hvi7rfydvmz2icl4wj74djw5sn2gl8hxd02qw4b91"))))
+        (base32 "1d48ql0010v9ls6mac7fz6j391gm4h74a64hqgw89s0vfqgdyzdl"))))
     (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")
     (description
       "Snakemake aims to reduce the complexity of creating workflows by



reply via email to

[Prev in Thread] Current Thread [Next in Thread]