mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add python-bottle.
* gnu/packages/python.scm (python-bottle, python2-bottle): New variables.
This commit is contained in:
parent
235bc01b28
commit
d270df8d62
1 changed files with 20 additions and 0 deletions
|
@ -15199,3 +15199,23 @@ (define-public python-marshmallow
|
|||
|
||||
(define-public python2-marshmallow
|
||||
(package-with-python2 python-marshmallow))
|
||||
|
||||
(define-public python-bottle
|
||||
(package
|
||||
(name "python-bottle")
|
||||
(version "0.12.13")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "bottle" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0m9k2a7yxvggc4kw8fsvj381vgsvfcdshg5nzy6vwrxiw2p53drr"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "http://bottlepy.org/")
|
||||
(synopsis "WSGI framework for small web-applications.")
|
||||
(description "@code{python-bottle} is a WSGI framework for small web-applications.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python2-bottle
|
||||
(package-with-python2 python-bottle))
|
||||
|
|
Loading…
Reference in a new issue