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 @@ (define-public python-marshmallow
to and from native Python datatypes.")
(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
(package
(name "python-marshmallow-jsonapi")
@ -26272,23 +26275,21 @@ (define-public python-marshmallow-jsonapi
(uri (pypi-uri "marshmallow-jsonapi" version))
(sha256
(base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x"))))
(build-system python-build-system)
(propagated-inputs
(list python-marshmallow))
(build-system pyproject-build-system)
(native-inputs
(list python-faker
python-flake8
python-flake8-bugbear
python-flask
python-mock
python-pytest
python-tox))
python-setuptools
python-wheel))
(propagated-inputs
(list python-marshmallow))
(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.")
@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