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
This commit is contained in:
Sharlatan Hellseher 2025-07-28 16:15:24 +01:00
parent a1392522f5
commit 96f545ef7b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -25179,26 +25179,29 @@ numbers, real numbers, mixed types and more, and comes with a shell command
(define-public python-graphene (define-public python-graphene
(package (package
(name "python-graphene") (name "python-graphene")
(version "3.0") (version "3.4.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "graphene" version)) (uri (pypi-uri "graphene" version))
(sha256 (sha256
(base32 (base32 "1aha3bnrafxd823q4swdmlvbprfb17v3fga4g3hffpz7ija8cdra"))))
"08m1n2ydk48c18cvl8474v3pwwacjl1vgq61m9qs00122mp0cj5g")))) (build-system pyproject-build-system)
(build-system python-build-system)
(propagated-inputs
(list python-graphql-core python-graphql-relay python-aniso8601
python-promise python-six))
(arguments (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/") (home-page "https://graphene-python.org/")
(synopsis "GraphQL Framework for Python") (synopsis "GraphQL Framework for Python")
(description (description
"Graphene is a Python library for building GraphQL schemas/types. "Graphene is a Python library for building GraphQL schemas/types. A
A GraphQL schema describes your data model, and provides a GraphQL server GraphQL schema describes your data model, and provides a GraphQL server with
with an associated set of resolve methods that know how to fetch data.") an associated set of resolve methods that know how to fetch data.")
(license license:expat))) (license license:expat)))
(define-public python-random2 (define-public python-random2