[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69074] [PATCH 09/11] gnu: Add python-cle.
From: |
soeren |
Subject: |
[bug#69074] [PATCH 09/11] gnu: Add python-cle. |
Date: |
Thu, 11 Jul 2024 23:27:20 +0200 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-cle): New variable.
---
gnu/packages/python-xyz.scm | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6abeac61e6..a5b36fda81 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33788,6 +33788,32 @@ (define-public python-opcodes
and BMI2).")
(license license:bsd-2))))
+(define-public python-cle
+ (package
+ (name "python-cle")
+ ;; Must be the same version as python-angr.
+ (version "9.2.46")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cle" version))
+ (sha256
+ (base32 "0mswv9gd2p2ws7zfsshqv5ybbj27wkdwakdcknq4vsrx9ry9k4yc"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f))
+ (propagated-inputs (list python-pefile python-pyelftools python-pyvex
+ python-sortedcontainers))
+ (native-inputs (list python-cffi))
+ (home-page "https://github.com/angr/cle")
+ (synopsis "Python loader for binaries and their associated libraries")
+ (description
+ "CLE loads binaries and their associated libraries, resolves
+imports and provides an abstraction of process memory the same way as if
+it was loader by the operating system's loader.")
+ (license license:bsd-2)))
+
(define-public python-pyvex
(package
(name "python-pyvex")
@@ -33810,7 +33836,7 @@ (define-public python-pyvex
(with-directory-excursion "tests"
(invoke "python" "-m" "unittest")))))
- (add-before 'build 'set-cc-native
+ (add-before 'build 'set-cc
(lambda _
(setenv "CC" #$(cc-for-target))
(setenv "CC_NATIVE" "gcc"))))))
- [bug#69074] [PATCH 01/11] gnu: Add python-keystone-engine., soeren, 2024/07/11
- [bug#69074] [PATCH 07/11] gnu: Add python-archinfo., soeren, 2024/07/11
- [bug#69074] [PATCH 05/11] gnu: Add python-pysmt., soeren, 2024/07/11
- [bug#69074] [PATCH 03/11] gnu: Add python-nampa., soeren, 2024/07/11
- [bug#69074] [PATCH 10/11] gnu: Add python-ailment., soeren, 2024/07/11
- [bug#69074] [PATCH 02/11] gnu: Add python-mulpyplexer., soeren, 2024/07/11
- [bug#69074] [PATCH 08/11] gnu: Add python-pyvex., soeren, 2024/07/11
- [bug#69074] [PATCH 06/11] gnu: Add python-claripy., soeren, 2024/07/11
- [bug#69074] [PATCH 11/11] gnu: Add python-angr., soeren, 2024/07/11
- [bug#69074] [PATCH 04/11] gnu: Add python-rpyc., soeren, 2024/07/11
- [bug#69074] [PATCH 09/11] gnu: Add python-cle.,
soeren <=