about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPjotr Prins2015-09-18 14:06:00 +0900
committerPjotr Prins2015-09-18 14:06:00 +0900
commitd29eecbed09aa87a53e87ac211f0504796578fe9 (patch)
tree11572e02f1c0b9aff0e8f603830e381e8762e86e
parent8f66d31c13691d0d3086ffe16aca7e6a65d636cf (diff)
downloadguix-bioinformatics-d29eecbed09aa87a53e87ac211f0504796578fe9.tar.gz
Moving to python2
-rw-r--r--gn/packages/cwl.scm6
-rw-r--r--gn/packages/python.scm13
2 files changed, 18 insertions, 1 deletions
diff --git a/gn/packages/cwl.scm b/gn/packages/cwl.scm
index 0d31148..2891346 100644
--- a/gn/packages/cwl.scm
+++ b/gn/packages/cwl.scm
@@ -46,7 +46,9 @@
       "Common workflow language reference implementation")
     (license license:asl2.0)))
 
-    
+(define-public python2-cwltool
+  (package-with-python2 python-cwltool))
+
 (define-public python-schema-salad
   (package
     (name "python-schema-salad")
@@ -83,3 +85,5 @@
       "Schema Annotations for Linked Avro Data (SALAD)")
     (license license:asl2.0)))
     
+(define-public python2-schema-salad
+  (package-with-python2 python-schema-salad))
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 0228dae..7a4bba3 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -72,6 +72,10 @@
       "rdflib extension adding JSON-LD parser and serializer")
     (license license:bsd-3)))
 
+(define-public python2-rdflib-jsonld
+  (package-with-python2 python-rdflib-jsonld))
+
+
 (define-public python-rdflib-4.2
   (package
     (name "python-rdflib-4.2")
@@ -104,6 +108,9 @@ powerful language for representing information.")
     (license (license:non-copyleft "file://LICENSE"
                            "See LICENSE in the distribution."))))
 
+(define-public python2-rdflib-4.2
+  (package-with-python2 python-rdflib-4.2))
+
 (define-public python-avro
 (package
   (name "python-avro")
@@ -128,6 +135,9 @@ powerful language for representing information.")
     "Avro is a serialization and RPC framework.")
   (license #f)))
 
+(define-public python2-avro
+  (package-with-python2 python-avro))
+
 (define-public python-shellescape
 (package
   (name "python-shellescape")
@@ -153,3 +163,6 @@ powerful language for representing information.")
     "Shell escape a string to safely use it as a token in a shell command (backport of Python shlex.quote for Python versions 2.x & < 3.3)")
   (license expat))
 )
+
+(define-public python2-shellescape
+  (package-with-python2 python-shellescape))