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

}