summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-24 02:56:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 13:27:29 +0000
commit16ba490bae338c06fabf73266d87b2c82b3c15cb (patch)
tree2fc6cee6469dc76ed845b7fcef83784832dc2b32 /gnu
parent9248824066aa1fe62af0a5b112e2a50419c38cd9 (diff)
gnu: python-marshmallow-jsonapi: Update to 0.26.0.
* gnu/packages/python-web.scm (python-marshmallow-jsonapi): Update to 0.26.0. [source]: Switch to git-fetch. Using a maintained branch to fix the package. [native-inputs]: Remove python-wheel. Change-Id: I8814bd7b405334fdebe68bfa589a4eb70ebc1c8b Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-web.scm27
1 files changed, 15 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 8031569e500..42d27d55416 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10704,34 +10704,37 @@ 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")
+ (version "0.26.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "marshmallow-jsonapi" version))
+ (method git-fetch)
+ (uri (git-reference
+ ;; XXX: Deprecated upstream: This repository has been archived
+ ;; by the owner on Jun 6, 2024. It is now read-only.
+ ;; Using a maintained fork. The pypi name of this fork
+ ;; is marshmallow-jsonapi-minfork.
+ (url "https://github.com/tadams42/marshmallow-jsonapi")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1d9pxcgmln4gls99vwj1h24qv0lz7fb2jqmqrsiv1pid1snc125x"))))
+ (base32 "07sizh4m03rrk1139ci3psh5npk42cdsdfsdp574pz1fd5ncrq91"))))
(build-system pyproject-build-system)
(native-inputs
(list python-faker
python-flask
python-pytest
- python-setuptools
- python-wheel))
- (propagated-inputs
- (list python-marshmallow))
+ python-setuptools))
+ (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.")
+framework. It includes optional utilities to integrate with Flask. This is a
+forked version whose pypi name is @code{marshmallow_jsonapi_minfork}.")
(license license:expat)))
(define-public python-pecan