From 143538ea2c9f2a8b611ffb51e848f77e6a403946 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 1 Dec 2024 22:25:22 +0000 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 703e50fcdcc..5a85f03de5a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26262,6 +26262,9 @@ input.") 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 @@ to and from native Python datatypes.") (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