about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/recaptcha_client/default.nix
blob: 09090540a5b0417a8ae9bb83c2f522d0b7687f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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 stdenv.lib; {
    description = "A CAPTCHA for Python using the reCAPTCHA service";
    homepage = http://recaptcha.net/;
    license = licenses.mit;
  };

}