diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-28 16:15:24 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 08:59:28 +0100 |
commit | c6f18ed2f14320b35adde270cc59d3a840a24be1 (patch) | |
tree | c81944dd1b6be98b1e154a3c96fb393363f576bb | |
parent | c1b2fa79be056a763e094f99f0f5046151e56453 (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
-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 a125de2665..dc6a3588e8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25229,26 +25229,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 |