diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-03-04 15:36:56 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:47 +0200 |
commit | a3ad28dd18464adf616f8fcc51045e4f48b4f8b6 (patch) | |
tree | 9c0400a8fb8107c0d1db5374953d2b5b94f41f5d | |
parent | ea8303a1e1ac8409ce03467f8563752c95ed83c8 (diff) |
battering: Add python-anticaptcha.
* battering/packages/python-xyz.scm (python-anticaptcha): New variable.
-rw-r--r-- | battering/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm index 6cb8b44..9140aa4 100644 --- a/battering/packages/python-xyz.scm +++ b/battering/packages/python-xyz.scm @@ -781,3 +781,24 @@ library. Makes use of python 3.2's @code{concurrent.futures}.") (description "This package provides a wrapper around the stdlib `tokenize` which roundtrips.") (license license:expat))) + +(define-public python-anticaptcha + (package + (name "python-anticaptcha") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-anticaptcha" version)) + (sha256 + (base32 "041pqs2zjq0x62j64496lpdzzd2c820m32wc22camp6vlly9x2h5")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-requests python-six)) + (native-inputs (list python-nose2 python-retry python-selenium + python-setuptools python-wheel)) + (home-page "https://github.com/ad-m/python-anticaptcha") + (synopsis + "Captcha solving library with support for anticaptcha.com") + (description + "Client library for solve captchas with anticaptcha.com support.") + (license license:expat))) |