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