gnu: Add python-purl.

* gnu/packages/python-web.scm (python-purl): New variable.
This commit is contained in:
Andreas Enge 2020-08-28 15:54:06 +02:00
parent 3b3cc55335
commit b9f3046eaa
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -3,7 +3,7 @@
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2016, 2017 Danny Milosavljevic <dannym+a@scratchpost.org>
;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2013, 2014, 2015, 2016, 2020 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016, 2017, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
@ -1856,6 +1856,27 @@ (define-public python2-websocket-client
,python2-backport-ssl-match-hostname)
,@(package-native-inputs base))))))
(define-public python-purl
(package
(name "python-purl")
(version "1.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "purl" version))
(sha256
(base32
"15ibnz1xrh5msmn04j0nr00sz4n7jwx6cwd6zlx99kkz3vpin53m"))))
(build-system python-build-system)
(propagated-inputs `(("python-six" ,python-six)))
(home-page
"https://github.com/codeinthehole/purl")
(synopsis
"Python package for URL manipulation")
(description
"Purl is a Python package for handling URLs.")
(license license:expat)))
(define-public python-requests
(package
(name "python-requests")