1{ lib
2, buildPythonPackage
3, fetchPypi
4, pillow
5}:
6
7buildPythonPackage rec {
8 pname = "wheezy.captcha";
9 version = "3.0.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-PdtOhoVOopQsX2raPqh0P8meM8/MysgKsIe27HNtl3s=";
15 };
16
17 propagatedBuildInputs = [ pillow ];
18
19 pythonImportsCheck = [ "wheezy.captcha" ];
20
21 meta = with lib; {
22 homepage = "https://wheezycaptcha.readthedocs.io/en/latest/";
23 description = "A lightweight CAPTCHA library";
24 license = licenses.mit;
25 maintainers = with maintainers; [ Flakebi ];
26 };
27}