gnu: python-marshmallow-jsonapi: Use pyproject-build-system.

* gnu/packages/python-xyz.scm (python-marshmallow-jsonapi)
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Remove python-flake8, python-flake8-bugbear,
python-mock, and python-tox; add python-setuptools and python-wheel.
[description]: Fix fill column.

Change-Id: I980c915b1b110931829dec6cc84455919e8f77a5
This commit is contained in:
Sharlatan Hellseher 2024-12-01 22:25:22 +00:00
parent 8f7accef59
commit 143538ea2c
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -26262,6 +26262,9 @@ input.")
to and from native Python datatypes.") to and from native Python datatypes.")
(license license:expat))) (license license:expat)))
;; XXX: Deprecated upstream: This repository has been archived by the owner on
;; Jun 6, 2024. It is now read-only.
;; Consider to remove when nothing is depend on it.
(define-public python-marshmallow-jsonapi (define-public python-marshmallow-jsonapi
(package (package
(name "python-marshmallow-jsonapi") (name "python-marshmallow-jsonapi")
@ -26272,23 +26275,21 @@ to and from native Python datatypes.")
(uri (pypi-uri "marshmallow-jsonapi" version)) (uri (pypi-uri "marshmallow-jsonapi" version))
(sha256 (sha256
(base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x")))) (base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x"))))
(build-system python-build-system) (build-system pyproject-build-system)
(propagated-inputs
(list python-marshmallow))
(native-inputs (native-inputs
(list python-faker (list python-faker
python-flake8
python-flake8-bugbear
python-flask python-flask
python-mock
python-pytest python-pytest
python-tox)) python-setuptools
python-wheel))
(propagated-inputs
(list python-marshmallow))
(home-page "https://github.com/marshmallow-code/marshmallow-jsonapi") (home-page "https://github.com/marshmallow-code/marshmallow-jsonapi")
(synopsis "JSON:API 1.0 formatting with Marshmallow") (synopsis "JSON:API 1.0 formatting with Marshmallow")
(description (description
"The marshmallow-jsonapi package provides a simple way to produce "The marshmallow-jsonapi package provides a simple way to produce
@uref{https://jsonapi.org, JSON:API}-compliant data in any Python Web framework. @uref{https://jsonapi.org, JSON:API}-compliant data in any Python Web
It includes optional utilities to integrate with Flask.") framework. It includes optional utilities to integrate with Flask.")
(license license:expat))) (license license:expat)))
(define-public python-apispec (define-public python-apispec