From: soeren@soeren-tempel.net
To: 72393@debbugs.gnu.org
Cc: Lars-Dominik Braun <lars@6xq.net>, Marius Bakke <marius@gnu.org>,
Munyoki Kilyungi <me@bonfacemunyoki.com>,
Sharlatan Hellseher <sharlatanus@gmail.com>,
Tanguy Le Carrour <tanguy@bioneland.org>,
jgart <jgart@dismail.de>
Subject: [bug#72393] [PATCH 05/10] gnu: Add python-cart.
Date: Wed, 31 Jul 2024 10:11:25 +0200 [thread overview]
Message-ID: <ac478c980b626c939bfdd6880cb15f0c4a8a4445.1722412559.git.soeren@soeren-tempel.net> (raw)
In-Reply-To: <cover.1722412559.git.soeren@soeren-tempel.net>
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")
next prev parent reply other threads:[~2024-07-31 8:13 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-31 7:59 [bug#72393] [PATCH 00/10] gnu: python-angr: Update to 9.2.112 soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 01/10] gnu: python-ailment: " soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 02/10] gnu: python-pyvex: " soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 03/10] gnu: Add python-backports-strenum soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 04/10] gnu: python-archinfo: Update to 9.2.112 soeren
2024-07-31 8:11 ` soeren [this message]
2024-07-31 8:11 ` [bug#72393] [PATCH 06/10] gnu: python-cle: " soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 07/10] gnu: python-claripy: " soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 08/10] gnu: Add python-pyformlang soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 09/10] gnu: Add python-unique-log-filter soeren
2024-07-31 8:11 ` [bug#72393] [PATCH 10/10] gnu: python-angr: Update to 9.2.112 soeren
2024-09-15 10:26 ` [bug#72393] [PATCH 00/10] " Sören Tempel
2024-09-23 2:07 ` jgart via Guix-patches via
2024-09-27 20:25 ` Sören Tempel
2024-09-27 18:34 ` [bug#72393] [PATCH v2 01/10] gnu: python-ailment: " soeren
2024-09-27 18:34 ` [bug#72393] [PATCH v2 02/10] gnu: python-pyvex: " soeren
2024-09-27 18:34 ` [bug#72393] [PATCH v2 03/10] gnu: Add python-backports-strenum soeren
2024-09-27 18:34 ` [bug#72393] [PATCH v2 04/10] gnu: python-archinfo: Update to 9.2.112 soeren
2024-09-27 18:34 ` [bug#72393] [PATCH v2 05/10] gnu: Add python-cart soeren
2024-09-27 18:34 ` [bug#72393] [PATCH v2 06/10] gnu: python-cle: Update to 9.2.112 soeren
2024-09-27 18:35 ` [bug#72393] [PATCH v2 07/10] gnu: python-claripy: " soeren
2024-09-27 18:35 ` [bug#72393] [PATCH v2 08/10] gnu: Add python-pyformlang soeren
2024-09-27 18:35 ` [bug#72393] [PATCH v2 09/10] gnu: Add python-unique-log-filter soeren
2024-09-27 18:35 ` [bug#72393] [PATCH v2 10/10] gnu: python-angr: Update to 9.2.112 soeren
2024-10-07 10:24 ` bug#72393: [PATCH v2 01/10] gnu: python-ailment: " Ludovic Courtès
2024-10-07 17:32 ` [bug#72393] " jgart via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ac478c980b626c939bfdd6880cb15f0c4a8a4445.1722412559.git.soeren@soeren-tempel.net \
--to=soeren@soeren-tempel.net \
--cc=72393@debbugs.gnu.org \
--cc=jgart@dismail.de \
--cc=lars@6xq.net \
--cc=marius@gnu.org \
--cc=me@bonfacemunyoki.com \
--cc=sharlatanus@gmail.com \
--cc=tanguy@bioneland.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.