mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add python-executing.
* gnu/packages/python-xyz.scm (python-executing): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
05c9dbbc41
commit
bd9998db98
1 changed files with 21 additions and 0 deletions
|
@ -7197,6 +7197,27 @@ (define-public python-imagecodecs
|
|||
tifffile, czifile, and other scientific image input/output modules.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-executing
|
||||
(package
|
||||
(name "python-executing")
|
||||
(version "0.8.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "executing" version))
|
||||
(sha256
|
||||
(base32 "08q0xh9fd8k41sqpp23q6fb9bf7yj4y2q6sv30pj36vvk8pg8fy2"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; TODO: tests require python-asttokens
|
||||
(native-inputs
|
||||
(list python-setuptools-scm python-toml))
|
||||
(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
|
||||
currently doing, particularly the AST node being executed.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-roifile
|
||||
(package
|
||||
(name "python-roifile")
|
||||
|
|
Loading…
Reference in a new issue