2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 16:54:19 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonAtLeast
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "recaptcha-client";
|
|
|
|
version = "1.0.6";
|
|
|
|
disabled = pythonAtLeast "3.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "28c6853c1d13d365b7dc71a6b05e5ffb56471f70a850de318af50d3d7c0dea2f";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-26 16:54:19 +01:00
|
|
|
description = "A CAPTCHA for Python using the reCAPTCHA service";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://recaptcha.net/";
|
2018-10-26 16:54:19 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|