guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9248824066aa1fe62af0a5b112e2a50419c38cd9
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Dec 24 02:52:32 2025 +0100
gnu: python-marshmallow-jsonapi: Move to (gnu packages python-web).
* gnu/packages/python-xyz.scm (python-marshmallow-jsonapi): Move from here…
* gnu/packages/python-web.scm (python-marshmallow-jsonapi): …to here.
Change-Id: Ie1672601cac70ff7d40cd7323d094f50ef1152a6
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-web.scm | 30 ++++++++++++++++++++++++++++++
gnu/packages/python-xyz.scm | 30 ------------------------------
2 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6e896e1441..8031569e50 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10704,6 +10704,36 @@ Swagger.")
"Manuel lets you mix and match traditional doctests with custom test
syntax.")
(license license:asl2.0)))
+;; 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")
+ (version "0.24.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "marshmallow-jsonapi" version))
+ (sha256
+ (base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-faker
+ python-flask
+ python-pytest
+ 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.")
+ (license license:expat)))
+
(define-public python-pecan
(package
(name "python-pecan")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 460adb28e4..ee9ee570e6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25501,36 +25501,6 @@ to and from native Python datatypes.")
(list python-packaging))))
-;; 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")
- (version "0.24.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "marshmallow-jsonapi" version))
- (sha256
- (base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x"))))
- (build-system pyproject-build-system)
- (native-inputs
- (list python-faker
- python-flask
- python-pytest
- 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.")
- (license license:expat)))
-
(define-public python-apispec
(package
(name "python-apispec")