me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pynamecheap.

* gnu/packages/python.scm (python-pynamecheap, python2-pynamecheap): New
variables.
master
Clément Lassieur 2018-06-14 00:57:12 +02:00
parent f4adbe7405
commit b863b50d80
No known key found for this signature in database
GPG Key ID: 89F96D4808F359C7
1 changed files with 25 additions and 0 deletions

View File

@ -13691,3 +13691,28 @@ Public Suffix List's private domains as well.")
(define-public python2-tldextract
(package-with-python2 python-tldextract))
(define-public python-pynamecheap
(package
(name "python-pynamecheap")
(version "0.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "PyNamecheap" version))
(sha256
(base32
"0wkbwz208j8nfrsmzmclvxg22ymknn0mlz76wbdza9k2bx2zja6l"))))
(build-system python-build-system)
(propagated-inputs
`(("python-requests" ,python-requests)))
(home-page
"https://github.com/Bemmu/PyNamecheap")
(synopsis
"Namecheap API client in Python")
(description
"PyNamecheap is a Namecheap API client in Python.")
(license license:expat)))
(define-public python2-pynamecheap
(package-with-python2 python-pynamecheap))