guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add python-helper.


From: guix-commits
Subject: 02/02: gnu: Add python-helper.
Date: Thu, 27 May 2021 14:59:35 -0400 (EDT)

roelj pushed a commit to branch master
in repository guix.

commit 167fc141d4e6f054e546322eb06e07dacb3309a3
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Thu May 27 20:59:16 2021 +0200

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 973da15..3540d8f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25215,6 +25215,29 @@ versions which have appeared in recent Python 
releases, but are usable with
 older versions of Python and so are packaged here.")
     (license license:bsd-3)))
 
+(define-public python-helper
+  (package
+    (name "python-helper")
+    (version "2.5.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "helper" version))
+              (sha256
+               (base32
+                "1d2j64wgbggzv5rhvil10zndp2w78wa5np5w0psj122ws9qr9wsa"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-mock" ,python-mock)))
+    (propagated-inputs
+     `(("python-logutils" ,python-logutils)
+       ("python-pyyaml" ,python-pyyaml)))
+    (home-page "https://github.com/gmr/helper";)
+    (synopsis "Library for writing configurable applications and daemons")
+    (description
+     "This package provides procedures for quickly writing configurable
+applications and daemons.")
+    (license license:bsd-3)))
+
 (define-public python-qtsass
   (package
     (name "python-qtsass")



reply via email to

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