1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonAtLeast 5}: 6 7buildPythonPackage rec { 8 pname = "recaptcha-client"; 9 version = "1.0.6"; 10 disabled = pythonAtLeast "3.5"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "28c6853c1d13d365b7dc71a6b05e5ffb56471f70a850de318af50d3d7c0dea2f"; 15 }; 16 17 meta = with lib; { 18 description = "A CAPTCHA for Python using the reCAPTCHA service"; 19 homepage = "http://recaptcha.net/"; 20 license = licenses.mit; 21 }; 22 23}