me
/
guix
Archived
1
0
Fork 0

gnu: Add python-publicsuffix2.

* gnu/packages/python.scm (python-publicsuffix2): New variable.
(python2-publicsuffix2): New variable.
master
David Craven 2016-08-05 19:33:09 +02:00
parent d6907ff75f
commit b2319996dc
No known key found for this signature in database
GPG Key ID: C5E051C79C0BECDB
1 changed files with 26 additions and 0 deletions

View File

@ -10162,3 +10162,29 @@ List.")
(native-inputs
`(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs base))))))
(define-public python-publicsuffix2
(package
(name "python-publicsuffix2")
(version "2.20160621")
(source
(origin
(method url-fetch)
(uri (pypi-uri "publicsuffix2" version ".tar.bz2"))
(sha256
(base32
"06lx603gdwad5hc3hmn763ngq0rq9bzz1ni3ga72nzk5n872arkd"))))
(build-system python-build-system)
(home-page "https://github.com/pombredanne/python-publicsuffix2")
(synopsis "Get a public suffix for a domain name using the Public Suffix List")
(description "Get a public suffix for a domain name using the Public Suffix
List. Forked from and using the same API as the publicsuffix package.")
(license (list license:expat license:mpl2.0))
(properties `((python2-variant . ,(delay python2-publicsuffix2))))))
(define-public python2-publicsuffix2
(let ((base (package-with-python2 (strip-python2-variant python-publicsuffix2))))
(package (inherit base)
(native-inputs
`(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs base))))))