guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add python2-twodict.


From: guix-commits
Subject: branch master updated: gnu: Add python2-twodict.
Date: Sat, 26 Jun 2021 13:59:48 -0400

This is an automated email from the git hooks/post-receive script.

raghavgururajan pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5c8369d  gnu: Add python2-twodict.
5c8369d is described below

commit 5c8369d6c12e5158d8131523ad644a9cba33869c
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Sat Jun 26 13:57:10 2021 -0400

    gnu: Add python2-twodict.
    
    * gnu/packages/python-xyz.scm (python2-twodict): New variable.
---
 gnu/packages/python-xyz.scm | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6b92200..6c0930f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -239,6 +239,21 @@ remembers the order in which the items were inserted and 
supports almost all the
 features of the Python's built-in dict.")
     (license license:unlicense)))
 
+(define-public python2-twodict
+  (package
+    (inherit python-twodict)
+    (name "python2-twodict")
+    (version "1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "twodict" version))
+       (sha256
+        (base32 "0ifv7dv18jn2lg0a3l6zdlvmmlda2ivixfjbsda58a2ay6kxznr0"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:python ,python-2))))
+
 (define-public python-argopt
   (package
    (name "python-argopt")



reply via email to

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