[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69074] [PATCH v3 11/14] gnu: Add python-ailment.
From: |
soeren |
Subject: |
[bug#69074] [PATCH v3 11/14] gnu: Add python-ailment. |
Date: |
Thu, 4 Jul 2024 22:05:20 +0200 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-ailment): New variable.
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e256a322e7..6797bba3bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33805,6 +33805,34 @@ (define-public python-opcodes
and BMI2).")
(license license:bsd-2))))
+(define-public python-ailment
+ (package
+ (name "python-ailment")
+ ;; Must be the same version as python-angr.
+ (version "9.2.46")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "ailment" version))
+ (sha256
+ (base32 "073fcssbjis1ckwv2w0dcz2dfl6715bj4d4qdhspajj911mvng2f"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ ;; Many tests are skipped due to cyclic dependencies.
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "tests"
+ (invoke "python" "-m" "unittest"))))))))
+ (home-page "https://github.com/angr/ailment")
+ (synopsis "The angr intermediate language")
+ (description
+ "This Python module implements an @acronym{IL, Intermediate Language},
+also known as @acronym{IR, Intermediate Representation}, used by the angr
+binary analysis platform.")
+ (license license:bsd-2)))
+
(define-public python-cle
(package
(name "python-cle")
- [bug#69074] [PATCH v3 01/14] gnu: Add python-itanium-demangle., soeren, 2024/07/04
- [bug#69074] [PATCH v3 02/14] gnu: Add python-keystone-engine., soeren, 2024/07/04
- [bug#69074] [PATCH v3 05/14] gnu: Add python-rpyc., soeren, 2024/07/04
- [bug#69074] [PATCH v3 03/14] gnu: Add python-mulpyplexer., soeren, 2024/07/04
- [bug#69074] [PATCH v3 04/14] gnu: Add python-nampa., soeren, 2024/07/04
- [bug#69074] [PATCH v3 08/14] gnu: Add python-archinfo., soeren, 2024/07/04
- [bug#69074] [PATCH v3 12/14] gnu: unicorn: Update to 2.0.1.post1., soeren, 2024/07/04
- [bug#69074] [PATCH v3 06/14] gnu: Add python-pysmt., soeren, 2024/07/04
- [bug#69074] [PATCH v3 13/14] gnu: capstone: Backport upstream fix for Python bindings., soeren, 2024/07/04
- [bug#69074] [PATCH v3 07/14] gnu: Add python-claripy., soeren, 2024/07/04
- [bug#69074] [PATCH v3 11/14] gnu: Add python-ailment.,
soeren <=
- [bug#69074] [PATCH v3 10/14] gnu: Add python-cle., soeren, 2024/07/04
- [bug#69074] [PATCH v3 09/14] gnu: Add python-pyvex., soeren, 2024/07/04
- [bug#69074] [PATCH v3 14/14] gnu: Add python-angr., soeren, 2024/07/04