guix-commits
[Top][All Lists]
Advanced

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

01/10: gnu: Add python-update-checker.


From: guix-commits
Subject: 01/10: gnu: Add python-update-checker.
Date: Mon, 22 Nov 2021 02:58:38 -0500 (EST)

rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit b5016027a01d75f8be9a24819056c37756eaea12
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Nov 22 07:15:52 2021 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 10d2f08..0dbf23e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21530,6 +21530,25 @@ interface to FUSE on various operating systems.  It's 
just one file and is
 implemented using @code{ctypes}.")
     (license license:isc)))
 
+(define-public python-update-checker
+  (package
+    (name "python-update-checker")
+    (version "0.18.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "update-checker" version))
+       (sha256
+        (base32 "04yb5a9mi45ax50m2m0ih6gdvkk1j7gfmy83dd58i1f59axlabba"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-requests))
+    (native-inputs (list python-black python-flake8 python-pytest))
+    (home-page "https://github.com/bboe/update_checker";)
+    (synopsis "Python module that will check for package updates")
+    (description "This package provides a Python module that will check for
+package updates.")
+    (license license:bsd-2)))
+
 (define-public python-userspacefs
   (package
     (name "python-userspacefs")



reply via email to

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