diff options
author | pjotrp | 2018-12-14 04:38:50 +0000 |
---|---|---|
committer | pjotrp | 2018-12-14 04:38:50 +0000 |
commit | 2372ecc00bb08b033bba48316edd17ef9a6e974b (patch) | |
tree | 91679c21f0bf75329bdfe2d0dc6e165b03a00b82 /gn/packages/python.scm | |
parent | 792c615b32c8eef93a8da7993b1cda32b3e3a0b8 (diff) | |
download | guix-bioinformatics-2372ecc00bb08b033bba48316edd17ef9a6e974b.tar.gz |
CWL final packages - tests pass in principle (except for some networking)
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 808eb9d..75f7cab 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -763,3 +763,24 @@ the older versions.") "Experimental type system extensions for programs checked with the mypy typechecker.") (license #f)) ) + + +(define-public python-arcp +(package + (name "python-arcp") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "arcp" version)) + (sha256 + (base32 + "0h8sn0mlb6vb8wqqnqc4pxdklrkyx3p72afdhm7b9kyalrqzd7dd")))) + (build-system python-build-system) + (home-page "http://arcp.readthedocs.io/") + (synopsis + "arcp (Archive and Package) URI parser and generator") + (description + "arcp (Archive and Package) URI parser and generator") + (license license:asl2.0)) +) |