Archived
1
0
Fork 0

gnu: Add python-polling2.

* gnu/packages/python-xyz.scm (python-polling2): New variable.
This commit is contained in:
Ricardo Wurmus 2021-11-30 20:49:10 +01:00
parent 1a13968210
commit 3b74b41498
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2961,6 +2961,28 @@ existing ones.")
;; Tests don't work with python2. ;; Tests don't work with python2.
#:tests? #f))))) #:tests? #f)))))
(define-public python-polling2
(package
(name "python-polling2")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "polling2" version))
(sha256
(base32 "0hp3238fv6k1qk43gv4jwnv1mwlkmx33akbj560b9nvsry1dmdwh"))))
(build-system python-build-system)
(arguments '(#:tests? #false)) ; no tests included
(native-inputs
`(("python-mock" ,python-mock)
("python-pytest" ,python-pytest)
("python-pytest-runner" ,python-pytest-runner)))
(home-page "https://github.com/ddmee/polling2")
(synopsis "Polling utility with many configurable options")
(description "Polling2 is a utility used to wait for a function to return
a certain expected condition.")
(license license:expat)))
(define-public python-poyo (define-public python-poyo
(package (package
(name "python-poyo") (name "python-poyo")