gnu: Add python-update-checker.

* gnu/packages/python-xyz.scm (python-update-checker): New variable.
This commit is contained in:
Ricardo Wurmus 2021-11-22 07:15:52 +01:00
parent b033079e47
commit b5016027a0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -21530,6 +21530,25 @@ (define-public python-fusepyng
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")