aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
authorPjotr Prins2015-09-18 14:06:00 +0900
committerPjotr Prins2015-09-18 14:06:00 +0900
commitd29eecbed09aa87a53e87ac211f0504796578fe9 (patch)
tree11572e02f1c0b9aff0e8f603830e381e8762e86e /gn/packages/python.scm
parent8f66d31c13691d0d3086ffe16aca7e6a65d636cf (diff)
downloadguix-bioinformatics-d29eecbed09aa87a53e87ac211f0504796578fe9.tar.gz
Moving to python2
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r--gn/packages/python.scm13
1 files changed, 13 insertions, 0 deletions
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))