Archived
1
0
Fork 0

gnu: Add python-librecaptcha.

* gnu/packages/messaging.scm (python-librecaptcha): New variable.
This commit is contained in:
Danny Milosavljevic 2022-02-25 16:48:50 +01:00
parent ed8d236eb9
commit a751795551
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -3278,4 +3278,25 @@ more)! It connects via the Slack API, and maintains a persistent websocket
for notification of events.")
(license license:expat)))
(define-public python-librecaptcha
(package
(name "python-librecaptcha")
(version "0.7.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/taylordotfish/librecaptcha")
(commit version)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0r35ws6vdf31j01kpacvpjplddm254r0cgy0npmhgnfxd5kpjf3s"))))
(build-system python-build-system)
(propagated-inputs
(list python-pillow python-requests python-esprima python-pygobject gobject-introspection gtk+))
(synopsis "Show CAPTCHA without running proprietary code.")
(description "This package shows CAPTCHA without running proprietary code.")
(home-page "https://github.com/taylordotfish/librecaptcha")
(license license:gpl3+)))
;;; messaging.scm ends here