depot/third_party/nixpkgs/pkgs/development/python-modules/recaptcha_client/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

23 lines
479 B
Nix

{ lib, stdenv
, 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;
};
}