nixpkgs/pkgs/development/python-modules/recaptcha_client/default.nix
2021-01-25 18:31:47 +01:00

24 lines
471 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonAtLeast
}:
buildPythonPackage rec {
pname = "recaptcha-client";
version = "1.0.6";
disabled = pythonAtLeast "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "28c6853c1d13d365b7dc71a6b05e5ffb56471f70a850de318af50d3d7c0dea2f";
};
meta = with lib; {
description = "A CAPTCHA for Python using the reCAPTCHA service";
homepage = "http://recaptcha.net/";
license = licenses.mit;
};
}