guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a6fb51a2829d35a6f69f854b511ff1551f81c14b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 28 16:15:24 2025 +0100
gnu: python-graphene: Update to 3.4.3.
* gnu/packages/python-xyz.scm (python-graphene): Update to 3.4.3.
[build-system]: Use pyproject.
[propagated-inputs]: Remove python-aniso8601, python-promise, and
python-six; add python-dateutil and python-typing-extensions.
[native-inputs]: Add python-setuptools.
Change-Id: I193d1b7580c4647357d6150d49a9a5e5610d590b
---
gnu/packages/python-xyz.scm | 33 ++++++++++++++++++---------------
1 file changed, 18 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index adcbf82bb9..c33999764d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25174,26 +25174,29 @@ numbers, real numbers, mixed types and more, and
comes with a shell command
(define-public python-graphene
(package
(name "python-graphene")
- (version "3.0")
+ (version "3.4.3")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "graphene" version))
- (sha256
- (base32
- "08m1n2ydk48c18cvl8474v3pwwacjl1vgq61m9qs00122mp0cj5g"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-graphql-core python-graphql-relay python-aniso8601
- python-promise python-six))
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "graphene" version))
+ (sha256
+ (base32 "1aha3bnrafxd823q4swdmlvbprfb17v3fga4g3hffpz7ija8cdra"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:tests? #f)) ; no tests/ in the PyPI tarball
+ (list #:tests? #f)) ;XXX: tests fail to load
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-dateutil
+ python-graphql-core
+ python-graphql-relay
+ python-typing-extensions))
(home-page "https://graphene-python.org/")
(synopsis "GraphQL Framework for Python")
(description
- "Graphene is a Python library for building GraphQL schemas/types.
- A GraphQL schema describes your data model, and provides a GraphQL server
- with an associated set of resolve methods that know how to fetch data.")
+ "Graphene is a Python library for building GraphQL schemas/types. A
+GraphQL schema describes your data model, and provides a GraphQL server with
+an associated set of resolve methods that know how to fetch data.")
(license license:expat)))
(define-public python-random2