diff options
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 13 |
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)) |