[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72393] [PATCH 05/10] gnu: Add python-cart.
From: |
soeren |
Subject: |
[bug#72393] [PATCH 05/10] gnu: Add python-cart. |
Date: |
Wed, 31 Jul 2024 10:11:25 +0200 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-cart): New variable.
---
gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 081801e97d..cc7d45e6fa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33973,6 +33973,36 @@ (define-public python-opcodes
and BMI2).")
(license license:bsd-2))))
+(define-public python-cart
+ (package
+ (name "python-cart")
+ (version "1.2.2")
+ (source
+ (origin
+ ;; No source releases available on pypi, hence fetching from GitHub.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/CybercentreCanada/cart")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zycv620iljrsval5rai1wsn0hr25ddx9xhjsyy6xxrgprfxvlfi"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest" "discover")))))))
+ (propagated-inputs (list python-pycryptodome))
+ (home-page "https://github.com/CybercentreCanada/cart")
+ (synopsis "Library for interacting with the CaRT file format")
+ (description
+ "This Python library implements the CaRT file format which is commonly
+used to store and transmit information about computer malware and associated
+metadata.")
+ (license license:bsd-2)))
+
(define-public python-ailment
(package
(name "python-ailment")
- [bug#72393] [PATCH 00/10] gnu: python-angr: Update to 9.2.112., soeren, 2024/07/31
- [bug#72393] [PATCH 02/10] gnu: python-pyvex: Update to 9.2.112., soeren, 2024/07/31
- [bug#72393] [PATCH 03/10] gnu: Add python-backports-strenum., soeren, 2024/07/31
- [bug#72393] [PATCH 04/10] gnu: python-archinfo: Update to 9.2.112., soeren, 2024/07/31
- [bug#72393] [PATCH 06/10] gnu: python-cle: Update to 9.2.112., soeren, 2024/07/31
- [bug#72393] [PATCH 05/10] gnu: Add python-cart.,
soeren <=
- [bug#72393] [PATCH 09/10] gnu: Add python-unique-log-filter., soeren, 2024/07/31
- [bug#72393] [PATCH 08/10] gnu: Add python-pyformlang., soeren, 2024/07/31
- [bug#72393] [PATCH 01/10] gnu: python-ailment: Update to 9.2.112., soeren, 2024/07/31
- [bug#72393] [PATCH 07/10] gnu: python-claripy: Update to 9.2.112., soeren, 2024/07/31
- [bug#72393] [PATCH 10/10] gnu: python-angr: Update to 9.2.112., soeren, 2024/07/31