guix-commits
[Top][All Lists]
Advanced

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

15/30: gnu: Add python-frozendict.


From: guix-commits
Subject: 15/30: gnu: Add python-frozendict.
Date: Thu, 2 Apr 2020 14:55:47 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 3094c0ae59ef99644cda79b6077073651847b726
Author: Alex ter Weele <address@hidden>
AuthorDate: Sat Feb 29 11:06:27 2020 -0600

    gnu: Add python-frozendict.
    
    * gnu/packages/python-xyz.scm (python-frozendict): New variable.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bee9d7d..24c449f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -74,6 +74,7 @@
 ;;; Copyright © 2020 Josh Marshall <address@hidden>
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
 ;;; Copyright © 2020 Lars-Dominik Braun <address@hidden>
+;;; Copyright © 2020 Alex ter Weele <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -18726,3 +18727,22 @@ HTML-containing files.")
 usable as a configuration language.  This Python package implements parsing and
 dumping of JSON5 data structures.")
     (license license:asl2.0)))
+
+(define-public python-frozendict
+  (package
+    (name "python-frozendict")
+    (version "1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "frozendict" version))
+       (sha256
+        (base32 "0ibf1wipidz57giy53dh7mh68f2hz38x8f4wdq88mvxj5pr7jhbp"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/slezica/python-frozendict";)
+    (synopsis "Simple immutable mapping for Python")
+    (description
+     "@dfn{frozendict} is an immutable wrapper around dictionaries that
+implements the complete mapping interface.  It can be used as a drop-in
+replacement for dictionaries where immutability is desired.")
+    (license license:expat)))



reply via email to

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