depot/third_party/nixpkgs/pkgs/development/python-modules/captcha/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

39 lines
799 B
Nix

{
lib,
fetchFromGitHub,
pythonOlder,
buildPythonPackage,
pillow,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "captcha";
version = "0.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "lepture";
repo = "captcha";
rev = "refs/tags/v${version}";
hash = "sha256-5d5gts+BXS5OKVziR9cLczsD2QMXZ/n31sPEq+gPlxk=";
};
dependencies = [ pillow ];
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "captcha" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Captcha library that generates audio and image CAPTCHAs";
homepage = "https://github.com/lepture/captcha";
license = licenses.bsd3;
maintainers = with maintainers; [ Flakebi ];
};
}