sharlatan pushed a commit to branch python-team
in repository guix.
commit 3b2cbab37787bafe25330fb95547971d892196d8
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Nov 22 20:40:21 2024 +0000
gnu: python-executing: Update to 2.1.0.
* gnu/packages/python-xyz.scm (python-executing): Update to 2.1.0.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-asttokens, python-littleutils,
python-pytest, python-setuptools, and python-wheel.
Change-Id: I912a0dea949aca618d3f728e19dc27bbbfbc40c3
---
gnu/packages/python-xyz.scm | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e34c6282cc..f21885f150 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10934,18 +10934,26 @@ writable properties, cached properties, etc.")
(define-public python-executing
(package
(name "python-executing")
- (version "0.8.2")
+ (version "2.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "executing" version))
(sha256
- (base32 "08q0xh9fd8k41sqpp23q6fb9bf7yj4y2q6sv30pj36vvk8pg8fy2"))))
- (build-system python-build-system)
+ (base32 "1axrwh7kr7nshzjw6vj9w9hn3rqh9af2c257ll7iba0d4vfpv8lf"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:tests? #f)) ; TODO: tests require python-asttokens
+ (list
+ ;; AssertionError: assert 'test failure' in ''
+ #:test-flags #~(list "-k" "not test_two_statement_lookups")))
(native-inputs
- (list python-setuptools-scm python-toml))
+ (list python-asttokens
+ python-littleutils
+ python-pytest
+ python-setuptools
+ python-setuptools-scm
+ python-toml
+ python-wheel))
(home-page "https://github.com/alexmojaki/executing")
(synopsis "Get information about what a Python frame is currently doing")
(description "This package lets you get information about what a frame is