gnu: Add python-pybloom-live.

* gnu/packages/python-xyz.scm (python-pybloom-live): New variable.
This commit is contained in:
Ricardo Wurmus 2022-12-02 15:02:12 +01:00
parent 840d543939
commit 0c2dad9951
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -164,6 +164,7 @@ (define-module (gnu packages python-xyz)
#:use-module (gnu packages crypto)
#:use-module (gnu packages databases)
#:use-module (gnu packages dbm)
#:use-module (gnu packages digest)
#:use-module (gnu packages django)
#:use-module (gnu packages djvu)
#:use-module (gnu packages docker)
@ -22433,6 +22434,25 @@ (define-public python-latexcodec
(description "Lexer and codec to work with LaTeX code in Python.")
(license license:expat)))
(define-public python-pybloom-live
(package
(name "python-pybloom-live")
(version "4.0.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "pybloom_live" version))
(sha256
(base32
"040i6bjqvl33j30v865shsk30s3h7f16pqwiaj5kig857dfmqm4r"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-bitarray python-xxhash))
(native-inputs (list python-pytest))
(home-page "https://github.com/joseph-fox/python-bloomfilter")
(synopsis "Bloom filter")
(description "This package provides a scalable Bloom filter implemented in
Python.")
(license license:expat)))
(define-public python-pybtex
(package
(name "python-pybtex")