summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-30 20:18:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-01 00:36:55 +0100
commit9046b7f873494de76efadeaea9328bd3d0777089 (patch)
treeba608c3d1488e70564478b534c034b6c52e3ffb2 /gnu/packages/python-xyz.scm
parentd3b2c73dd55fa9430cfb17afdc025f75f97c588f (diff)
gnu: Add python-marisa-trie.
* gnu/packages/python-xyz.scm (python-marisa-trie): New variable. Change-Id: I34aab5ffbc9b1b05ee5c820a3806bbae2e8c14be
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ec2c100cbe..faebc8fe30 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1102,6 +1102,30 @@ comparison operators, as defined in the original
be displayed on the terminal, with color if possible, for logging purposes.")
(license license:expat)))
+(define-public python-marisa-trie
+ (package
+ (name "python-marisa-trie")
+ (version "1.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "marisa_trie" version))
+ (sha256
+ (base32 "0nzq9yc3qdpnnvhi9zlp6vcpk6id5lx3943pm7zgir1h5z8py44p"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-cython
+ python-hypothesis
+ python-pytest
+ python-readme-renderer
+ python-setuptools))
+ (home-page "https://github.com/pytries/marisa-trie")
+ (synopsis "Static memory-efficient Trie-like structures for Python")
+ (description
+ "This package provides static memory-efficient and fast Trie-like structures
+for Python.")
+ (license license:expat)))
+
(define-public python-multiplex
(package
(name "python-multiplex")