summary refs log tree commit diff
path: root/pkgs/development/python-modules/recaptcha_client/default.nix
blob: 08e7ff47aa1c30033e1b065f7f0926126b48aa8c (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
{ 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;
  };

}