unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43867] [PATCH 0/2] gnu: Add python-nestedtext.
@ 2020-10-08 12:09 Tanguy Le Carrour
  2020-10-08 12:10 ` [bug#43867] [PATCH 1/2] gnu: Add python-inform Tanguy Le Carrour
  2020-10-10 20:44 ` bug#43867: [PATCH 0/2] " Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Tanguy Le Carrour @ 2020-10-08 12:09 UTC (permalink / raw)
  To: 43867; +Cc: Tanguy Le Carrour

Tanguy Le Carrour (2):
  gnu: Add python-inform.
  gnu: Add python-nestedtext.

 gnu/packages/python-xyz.scm | 57 +++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

-- 
2.28.0





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#43867] [PATCH 1/2] gnu: Add python-inform.
  2020-10-08 12:09 [bug#43867] [PATCH 0/2] gnu: Add python-nestedtext Tanguy Le Carrour
@ 2020-10-08 12:10 ` Tanguy Le Carrour
  2020-10-08 12:10   ` [bug#43867] [PATCH 2/2] gnu: Add python-nestedtext Tanguy Le Carrour
  2020-10-10 20:44 ` bug#43867: [PATCH 0/2] " Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Tanguy Le Carrour @ 2020-10-08 12:10 UTC (permalink / raw)
  To: 43867; +Cc: Tanguy Le Carrour

* gnu/packages/python-xyz.scm (python-inform): New variable.
---
 gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 459526941b..622bd31279 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22151,3 +22151,32 @@ CSL 1.0.1 specification.  citeproc-py can output styled citations and
 bibliographies in a number of different output formats.  Currently supported
 are plain text, reStructuredText and HTML.")
     (license license:bsd-2)))
+
+(define-public python-inform
+  (package
+    (name "python-inform")
+    (version "1.23.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "inform" version))
+        (sha256
+          (base32
+            "0dvc5klbnbryrvspp45nmlg02g40j7xspcz7lqsm0c0dj0z29zdz"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f))  ; PyPI tarball lacks tests
+    (native-inputs
+      `(("python-hypothesis" ,python-hypothesis)
+        ("python-pytest-cov" ,python-pytest-cov)
+        ("python-pytest-runner" ,python-pytest-runner)))
+    (propagated-inputs
+      `(("python-arrow" ,python-arrow)
+        ("python-six" ,python-six)))
+    (home-page "https://inform.readthedocs.io")
+    (synopsis "Print & logging utilities for communicating with user")
+    (description
+      "Inform is designed to display messages from programs that are typically run from
+a console.  It provides a collection of ‘print’ functions that allow you to simply and
+cleanly print different types of messages.")
+    (license license:gpl3+)))
-- 
2.28.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#43867] [PATCH 2/2] gnu: Add python-nestedtext.
  2020-10-08 12:10 ` [bug#43867] [PATCH 1/2] gnu: Add python-inform Tanguy Le Carrour
@ 2020-10-08 12:10   ` Tanguy Le Carrour
  0 siblings, 0 replies; 5+ messages in thread
From: Tanguy Le Carrour @ 2020-10-08 12:10 UTC (permalink / raw)
  To: 43867; +Cc: Tanguy Le Carrour

* gnu/packages/python-xyz.scm (python-nestedtext): New variable.
---
 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 622bd31279..d7ec9cd825 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22180,3 +22180,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
-- 
2.28.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#43867: [PATCH 0/2] gnu: Add python-nestedtext.
  2020-10-08 12:09 [bug#43867] [PATCH 0/2] gnu: Add python-nestedtext Tanguy Le Carrour
  2020-10-08 12:10 ` [bug#43867] [PATCH 1/2] gnu: Add python-inform Tanguy Le Carrour
@ 2020-10-10 20:44 ` Ludovic Courtès
  2020-10-11 13:15   ` [bug#43867] " Tanguy Le Carrour
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2020-10-10 20:44 UTC (permalink / raw)
  To: Tanguy Le Carrour; +Cc: 43867-done

Hi,

Tanguy Le Carrour <tanguy@bioneland.org> skribis:

>   gnu: Add python-inform.
>   gnu: Add python-nestedtext.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#43867] [PATCH 0/2] gnu: Add python-nestedtext.
  2020-10-10 20:44 ` bug#43867: [PATCH 0/2] " Ludovic Courtès
@ 2020-10-11 13:15   ` Tanguy Le Carrour
  0 siblings, 0 replies; 5+ messages in thread
From: Tanguy Le Carrour @ 2020-10-11 13:15 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 43867-done

Le 10/10, Ludovic Courtès a écrit :
> Tanguy Le Carrour <tanguy@bioneland.org> skribis:
> 
> >   gnu: Add python-inform.
> >   gnu: Add python-nestedtext.
> 
> Applied, thanks!

Thanks!

-- 
Tanguy




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-10-11 13:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08 12:09 [bug#43867] [PATCH 0/2] gnu: Add python-nestedtext Tanguy Le Carrour
2020-10-08 12:10 ` [bug#43867] [PATCH 1/2] gnu: Add python-inform Tanguy Le Carrour
2020-10-08 12:10   ` [bug#43867] [PATCH 2/2] gnu: Add python-nestedtext Tanguy Le Carrour
2020-10-10 20:44 ` bug#43867: [PATCH 0/2] " Ludovic Courtès
2020-10-11 13:15   ` [bug#43867] " Tanguy Le Carrour

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).