mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: python-archinfo: Update to 9.2.112.
* gnu/packages/emulators.scm (python-archinfo): Update to 9.2.112. [propagated-inputs]: Add python-backports-strenum. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7118e5fe6f
commit
ac908ebd9f
1 changed files with 12 additions and 3 deletions
|
@ -3875,17 +3875,26 @@ (define-public python-archinfo
|
||||||
(package
|
(package
|
||||||
(name "python-archinfo")
|
(name "python-archinfo")
|
||||||
;; Must be the same version as python-angr.
|
;; Must be the same version as python-angr.
|
||||||
(version "9.2.46")
|
(version "9.2.112")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "archinfo" version))
|
(uri (pypi-uri "archinfo" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "037xfq3wcf8ngayxz9623l4646m780v2102mfbygpzbkkjha1966"))))
|
(base32 "011n9vrrsbqbnw2i38ls7f0xkd85kxcnn14fm4lhxjpi91p7hshb"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs (list python-capstone python-keystone-engine))
|
(propagated-inputs
|
||||||
|
(list
|
||||||
|
python-backports-strenum
|
||||||
|
python-capstone
|
||||||
|
python-keystone-engine))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.cfg"
|
||||||
|
(("backports.strenum")
|
||||||
|
"backports_strenum"))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
|
|
Loading…
Reference in a new issue