diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-28 16:15:24 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-08 16:50:03 +0100 |
commit | 5dc1c61282e6165ddf78b9bb2a2ba811e138c905 (patch) | |
tree | 9f6908823f650bef97f72afbb06166bae78f2819 /gnu/packages/python-xyz.scm | |
parent | eaec7143666c7d581d72edc424651290927c7944 (diff) |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c9569c52d2..f730d313dd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25215,26 +25215,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 |