guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: Add python-nestedtext.


From: guix-commits
Subject: 06/08: gnu: Add python-nestedtext.
Date: Sat, 10 Oct 2020 17:00:30 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit d31277e7b272f366bb872b34291d7fdb658ed12c
Author: Tanguy Le Carrour <tanguy@bioneland.org>
AuthorDate: Thu Oct 8 14:10:50 2020 +0200

    gnu: Add python-nestedtext.
    
    * gnu/packages/python-xyz.scm (python-nestedtext): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 37f911b..25eaf4a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22190,3 +22190,31 @@ are plain text, reStructuredText and HTML.")
 a console.  It provides a collection of ‘print’ functions that allow you to 
simply and
 cleanly print different types of messages.")
     (license license:gpl3+)))
+
+(define-public python-nestedtext
+  (package
+    (name "python-nestedtext")
+    (version "1.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "nestedtext" version))
+        (sha256
+          (base32
+            "0xjx863n7yd1xmkwhy48lhmqrmlzgbx3civhk386hvrzyq4sx148"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f))  ; PyPI tarball lacks tests
+    (propagated-inputs
+      `(("python-inform" ,python-inform)))
+    (home-page "https://nestedtext.org";)
+    (synopsis "Human readable and writable data interchange format")
+    (description
+      "NestedText is a file format for holding data that is to be entered, 
edited, or
+viewed by people.  It allows data to be organized into a nested collection of
+dictionaries, lists, and strings.  In this way it is similar to JSON and YAML, 
but
+without the complexity and risk of YAML and without the syntatic clutter of 
JSON.
+NestedText is both simple and natural.  Only a small number of concepts and 
rules must
+be kept in mind when creating it.  It is easily created, modified, or viewed 
with
+a text editor and easily understood and used by both programmers and 
non-programmers.")
+    (license license:expat))) ; MIT license



reply via email to

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