summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-05-07 07:05:10 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-17 14:27:31 +0100
commitccc04fa4254a0aefa5c644b6699fe6a77a427d70 (patch)
treeb2d7543f2119d437f1cd49b0f36c731e6fa4f5f9 /gnu/packages/python-web.scm
parent71acbe87bcad4bfb95fb9240bbf145989db09fc6 (diff)
gnu: Add python-pycrdt-store.
* gnu/packages/python-web.scm (python-pycrdt-store): New variable. Relates-to: guix/guix!8591 Change-Id: Id066086cab72ea663fbb8d27cc685515589304fb Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 59ca4dca6b..f483be7e31 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4560,6 +4560,36 @@ This is a Python CRDT library that provides bindings for Yrs, the Rust port of
the Yjs framework.")
(license license:expat)))
+(define-public python-pycrdt-store
+ (package
+ (name "python-pycrdt-store")
+ (version "0.1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/y-crdt/pycrdt-store")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "18yvv5lgxb4v0qlbi8bbkcm1666nxbkmhbx445sxpzab7027fl1a"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs
+ (list python-anyio
+ python-pycrdt
+ python-sqlite-anyio))
+ (native-inputs
+ (list python-hatchling
+ python-pytest
+ python-pytest-rerunfailures
+ python-trio))
+ (home-page "https://github.com/y-crdt/pycrdt-store")
+ (synopsis "Persistent storage for pycrdt")
+ (description
+ "This package provides a persistent storage feature for
+@code{python-pycrdt}.")
+ (license license:expat)))
+
(define-public python-pycurl
(package
(name "python-pycurl")