Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / wheezy-captcha / default.nix
blob4006bedf14e1f036b2a53ddf519c6bbcbc06d99e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pillow
5 }:
7 buildPythonPackage rec {
8   pname = "wheezy.captcha";
9   version = "3.0.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-PdtOhoVOopQsX2raPqh0P8meM8/MysgKsIe27HNtl3s=";
15   };
17   propagatedBuildInputs = [ pillow ];
19   pythonImportsCheck = [ "wheezy.captcha" ];
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   };