me
/
guix
Archived
1
0
Fork 0

gnu: Add python-whichcraft.

* gnu/packages/python-xyz.scm (python-whichcraft): New public variable.

Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
master
Tanguy Le Carrour 2019-10-15 09:40:59 +02:00 committed by Mathieu Othacehe
parent 6830120e58
commit b2b23d1242
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 21 additions and 0 deletions

View File

@ -9127,6 +9127,27 @@ server with very acceptable performance.")
(define-public python2-waitress
(package-with-python2 python-waitress))
(define-public python-whichcraft
(package
(name "python-whichcraft")
(version "0.6.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "whichcraft" version))
(sha256
(base32
"11yfkzyplizdgndy34vyd5qlmr1n5mxis3a3svxmx8fnccdvknxc"))))
(build-system python-build-system)
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/pydanny/whichcraft")
(synopsis "Cross-platform cross-python shutil.which functionality")
(description
"This package provides a shim of the shutil.which function that's
designed to work across multiple versions of Python.")
(license license:bsd-3)))
(define-public python-pyquery
(package
(name "python-pyquery")