guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add python-confuse.


From: guix-commits
Subject: 02/04: gnu: Add python-confuse.
Date: Tue, 2 Feb 2021 16:04:54 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit e07f60274ba015fc119784ef6cca6258e9b4104f
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 2 21:57:28 2021 +0100

    gnu: Add python-confuse.
    
    * gnu/packages/python-xyz.scm (python-confuse): 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 9cf9fe8..12f8dc4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23555,6 +23555,28 @@ Qt applications.")
  of binary data.")
     (license license:expat)))
 
+(define-public python-confuse
+  (package
+    (name "python-confuse")
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "confuse" version))
+       (sha256
+        (base32
+         "0r74djc8r6lfx6ldsqnhpvfsn256gsfzbl33qcm77hp2qr8h9z4j"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-pathlib" ,python-pathlib)
+       ("python-pyyaml" ,python-pyyaml)))
+    (home-page "https://github.com/beetbox/confuse";)
+    (synopsis "Painless YAML configuration.")
+    (description "Confuse is a configuration library for Python that uses
+YAML.  It takes care of defaults, overrides, type checking, command-line
+integration, human-readable errors, and standard OS-specific locations.")
+    (license license:expat)))
+
 (define-public python-pivy
   (package
     (name "python-pivy")



reply via email to

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