about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wheezy-captcha/default.nix
blob: 157a659f2fc277224bef128b71da4b65a8886623 (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
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pillow,
}:

buildPythonPackage rec {
  pname = "wheezy.captcha";
  version = "3.2.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-UtTpgrPK5eRr7sq97jptjdJyvAyrM2oU07+GZr2Ad7s=";
  };

  propagatedBuildInputs = [ pillow ];

  pythonImportsCheck = [ "wheezy.captcha" ];

  meta = with lib; {
    homepage = "https://wheezycaptcha.readthedocs.io/en/latest/";
    description = "A lightweight CAPTCHA library";
    license = licenses.mit;
    maintainers = with maintainers; [ Flakebi ];
  };
}