guix-commits
[Top][All Lists]
Advanced

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

06/103: gnu: Add python-tomli-w.


From: guix-commits
Subject: 06/103: gnu: Add python-tomli-w.
Date: Wed, 5 Jan 2022 09:44:27 -0500 (EST)

lbraun pushed a commit to branch wip-python-pep517
in repository guix.

commit 1e50e901c9e4c54e9dc4db1f0eff2d570326dd87
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sat Dec 4 08:59:34 2021 +0100

    gnu: Add python-tomli-w.
    
    * gnu/packages/python-xyz.scm (python-tomli-w): New variable.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cc29d8225d..03675abdfc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27738,3 +27738,25 @@ keyboard-friendly package.")
     (description
      "This package provides a Python interface to iw wireless tools.")
     (license license:gpl2)))
+
+(define-public python-tomli-w
+  (package
+    (name "python-tomli-w")
+    (version "0.4.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "tomli_w" version))
+        (sha256
+          (base32 "1di60lf367i51mcchgjhis466yyadn0z13632kibca5n0fz3lr27"))))
+    (build-system python-build-system)
+    (arguments `(#:tests? #f))
+    (native-inputs
+     `(("python-flit-core" ,python-flit-core)))
+    (home-page "https://github.com/hukkin/tomli-w";)
+    (synopsis "TOML writer for Python")
+    (description "Tomli-W is a Python library for writing TOML. It is a
+write-only counterpart to @code{python-tomli}, which is a read-only TOML
+parser. Tomli-W is fully compatible with TOML v1.0.0.")
+    (license license:expat)))
+



reply via email to

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