mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: Add python-marshmallow-jsonapi.
* gnu/packages/python-xyz.scm (python-marshmallow-jsonapi): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
64835a7103
commit
62820800cb
1 changed files with 30 additions and 0 deletions
|
@ -19179,6 +19179,36 @@ (define-public python-marshmallow-3.2
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1w18klwj0z9bqxj252qpj1hz8l46nl27sbc89rkajc7mln73wbws"))))))
|
(base32 "1w18klwj0z9bqxj252qpj1hz8l46nl27sbc89rkajc7mln73wbws"))))))
|
||||||
|
|
||||||
|
(define-public python-marshmallow-jsonapi
|
||||||
|
(package
|
||||||
|
(name "python-marshmallow-jsonapi")
|
||||||
|
(version "0.24.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "marshmallow-jsonapi" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-marshmallow" ,python-marshmallow-3.2)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-faker" ,python-faker)
|
||||||
|
("python-flake8" ,python-flake8)
|
||||||
|
("python-flake8-bugbear" ,python-flake8-bugbear)
|
||||||
|
("python-flask" ,python-flask)
|
||||||
|
("python-mock" ,python-mock)
|
||||||
|
("python-pre-commit" ,python-pre-commit)
|
||||||
|
("python-pytest" ,python-pytest)
|
||||||
|
("python-tox" ,python-tox)))
|
||||||
|
(home-page "https://github.com/marshmallow-code/marshmallow-jsonapi")
|
||||||
|
(synopsis "JSON:API 1.0 formatting with Marshmallow")
|
||||||
|
(description
|
||||||
|
"The marshmallow-jsonapi package provides a simple way to produce
|
||||||
|
@uref{https://jsonapi.org, JSON:API}-compliant data in any Python Web framework.
|
||||||
|
It includes optional utilities to integrate with Flask.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-apispec
|
(define-public python-apispec
|
||||||
(package
|
(package
|
||||||
(name "python-apispec")
|
(name "python-apispec")
|
||||||
|
|
Loading…
Reference in a new issue