diff options
author | Pjotr Prins | 2015-09-18 13:57:31 +0900 |
---|---|---|
committer | Pjotr Prins | 2015-09-18 13:57:31 +0900 |
commit | 8f66d31c13691d0d3086ffe16aca7e6a65d636cf (patch) | |
tree | 8170a7b7aeb042164e297be855864978da0271d1 /gn/packages/python.scm | |
parent | 2b5a7f5518eb0594c21fe087fd925eac8d68cf5e (diff) | |
download | guix-bioinformatics-8f66d31c13691d0d3086ffe16aca7e6a65d636cf.tar.gz |
cwl tools build
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 1663d96..0228dae 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -127,3 +127,29 @@ powerful language for representing information.") (description "Avro is a serialization and RPC framework.") (license #f))) + +(define-public python-shellescape +(package + (name "python-shellescape") + (version "3.4.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/s/shellescape/shellescape-" + version + ".tar.gz")) + (sha256 + (base32 + "0n5ky1b2vw2y0d4xl3qybyp2rk0gq5frjs8nr8ak6mgj2fyb4676")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page + "https://github.com/chrissimpkins/shellescape") + (synopsis + "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)") + (description + "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)) +) |