diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-19 02:33:51 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-20 15:01:50 +0000 |
| commit | c0d7989466ca398d71f4bfa74cf5bd45c9429b32 (patch) | |
| tree | aa62c1513f6bd45aed4c7531a035a39a8e589884 /gnu/packages/python-xyz.scm | |
| parent | 64d67c2dfa0947aeaf6dd28d548ab9ff8a2c58be (diff) | |
gnu: python-graphql-relay: Update to 3.1.5-0.611c033.
* gnu/packages/python-xyz.scm (python-graphql-relay): Update to 3.1.5-0.611c033.
[native-inputs]: Add python-pytest-describe.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3399af53524..96d2ced15cd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23153,20 +23153,26 @@ numbers, real numbers, mixed types and more, and comes with a shell command (define-public python-graphql-relay (package (name "python-graphql-relay") - (version "3.1.0") + (properties '((commit . "611c0333eeca53663d9b47f7994098edda81b087") + (revision . "0"))) + (version (git-version "3.1.5" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/graphql-python/graphql-relay-py") - (commit (string-append "v" version)))) + (commit (assoc-ref properties 'commit)))) (file-name (git-file-name name version)) (sha256 - (base32 "06ybi4bwqdffa5kn8xnns06wh3l0zj3qlzrxk1wpxqq320hyzx9x")))) + (base32 "1bghnmyn6rsqji7j70yhvd6z0s4p71pdrm5144rn95dha3pdxih9")))) (build-system pyproject-build-system) - (arguments (list #:test-flags #~(list "tests"))) (native-inputs - (list python-pytest python-pytest-asyncio python-poetry-core)) + (list python-pytest + python-pytest-asyncio + python-pytest-describe + python-poetry-core)) (propagated-inputs (list python-graphql-core)) (home-page "https://github.com/graphql-python/graphql-relay-py") (synopsis "Relay implementation for Python") |
