guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 8d8f6f745c8c2308096d484708c236da2cc8a538 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 784f4c29d1..668c3b976d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25196,26 +25196,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