diff options
author | Leo Famulari <leo@famulari.name> | 2019-02-17 13:55:24 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2019-02-19 14:34:30 -0500 |
commit | 68460fbb9dccf175c65a1be47f79ecaf763e9c00 (patch) | |
tree | 821364bee39c008b1cdc462a39ed8c2883d3f17a | |
parent | d5bbf66d71322fc9bc32adfeb41ab733ec47502b (diff) | |
download | guix-68460fbb9dccf175c65a1be47f79ecaf763e9c00.tar guix-68460fbb9dccf175c65a1be47f79ecaf763e9c00.tar.gz |
gnu: Add python-hyperlink.
* gnu/packages/python-web.scm (python-hyperlink): New variable.
-rw-r--r-- | gnu/packages/python-web.scm | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index dce8dd2ae9..052331cc44 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -12,7 +12,7 @@ ;;; Copyright © 2014, 2017 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Cyril Roelandt <tipecaml@gmail.com> -;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name> +;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2016, 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2015, 2017 Ben Woodcroft <donttrustben@gmail.com> @@ -2953,3 +2953,23 @@ underlies Mozilla Persona.") "This is a Python library for interacting with the Firefox Accounts ecosystem.") (license license:mpl2.0))) + +(define-public python-hyperlink + (package + (name "python-hyperlink") + (version "18.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "hyperlink" version)) + (sha256 + (base32 + "01m3y19arfqljksngy8grc966zdb4larysralb8cajzi8kvly6zh")))) + (build-system python-build-system) + (propagated-inputs + `(("python-idna" ,python-idna))) + (home-page "https://github.com/python-hyper/hyperlink") + (synopsis "Python module to create immutable URLs according to spec") + (description "This package provides a Python module to create immutable, and +correct URLs for Python according to RFCs 3986 and 3987.") + (license license:expat))) |