diff options
author | Sören Tempel <soeren@soeren-tempel.net> | 2024-07-11 23:27:14 +0200 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-07-13 09:59:18 -0500 |
commit | 05ac29c8df47e07ba9875f1f7e73004702597d77 (patch) | |
tree | 73705a8a5d0d25265a6e7f357bfa776052978e48 /gnu | |
parent | 0114007bf3e548d7bc1e22adafc89799f8255da9 (diff) | |
download | guix-05ac29c8df47e07ba9875f1f7e73004702597d77.tar.gz guix-05ac29c8df47e07ba9875f1f7e73004702597d77.zip |
gnu: Add python-nampa.
* gnu/packages/python-xyz.scm (python-nampa): New variable.
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0ad45c6c70..0c416995ed 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33790,6 +33790,26 @@ instructions up to AVX-512 and SHA (including 3dnow!+, XOP, FMA3, FMA4, TBM and BMI2).") (license license:bsd-2)))) +(define-public python-nampa + (package + (name "python-nampa") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "nampa" version)) + (sha256 + (base32 "0k6cq2gflpkm40qhgqbbcjmq5lq589c15bmk567qyh3d08062hvd")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-future)) + (home-page "https://github.com/thebabush/nampa") + (synopsis "Python implementation of IDA Pro's FLIRT technology") + (description + "This Python module implements the @acronym{FLIRT, Fast Library Identification +and Recognition Technology}. This technology is useful for identifying +common library subroutines in disassembled binaries.") + (license license:lgpl3))) + (define-public python-mulpyplexer (package (name "python-mulpyplexer") |