guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/15: gnu: Add python-simple-rlp.


From: guix-commits
Subject: 01/15: gnu: Add python-simple-rlp.
Date: Tue, 6 Dec 2022 06:16:15 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit db1c357a788fe38de033ef4f7ad4497d72557898
Author: Attila Lendvai <attila@lendvai.name>
AuthorDate: Tue Oct 11 15:10:00 2022 +0200

    gnu: Add python-simple-rlp.
    
    * gnu/packages/python-xyz.scm (python-simple-rlp): New variable.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b74b120510..b0202853d8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3011,6 +3011,29 @@ the optional C extension for speedups.  Simplejson is 
also supported on
 Python 3.3+.")
     (license license:x11)))
 
+(define-public python-simple-rlp
+  (package
+    (name "python-simple-rlp")
+    (version "0.1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/SamuelHaidu/simple-rlp";)
+             ;; Upstream doesn't tag the git repo.
+             (commit "342ea269d84da1ddc4a7630cdebc90159261391c")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1nv92sphpkyrncak4qgj50qmgkmj4ycl2szbnv9c7ihgl5df4div"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/SamuelHaidu/simple-rlp";)
+    (synopsis
+     "Python implementation of RLP (Recursive Length Prefix) encoding")
+    (description
+     "@code{simple-rlp} is a python implementation of RLP (Recursive Length \
+Prefix) - Encode and decode data structures.")
+    (license license:expat)))
 
 (define-public python-pyicu
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]