mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
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
This commit is contained in:
parent
e5a6faeb12
commit
e0ea00b05e
1 changed files with 13 additions and 5 deletions
|
@ -10961,18 +10961,26 @@ (define-public python-property-manager
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue