48 lines
1,003 B
Nix
48 lines
1,003 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
python,
|
||
|
testfixtures,
|
||
|
django,
|
||
|
django-ranged-response,
|
||
|
pillow,
|
||
|
withTTS ? true,
|
||
|
flite,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "django-simple-captcha";
|
||
|
version = "0.6.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-0YhRbTJvrdLVrQduuJZJ1VwCyrr+P9zCFUrBjp9tS5c=";
|
||
|
};
|
||
|
|
||
|
nativeCheckInputs = [ testfixtures ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
cd testproject
|
||
|
${python.interpreter} manage.py test captcha
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
django
|
||
|
django-ranged-response
|
||
|
pillow
|
||
|
] ++ lib.optional withTTS flite;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Customizable Django application to add captcha images to any Django form";
|
||
|
homepage = "https://github.com/mbi/django-simple-captcha";
|
||
|
changelog = "https://github.com/mbi/django-simple-captcha/blob/v${version}/CHANGES";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [
|
||
|
mrmebelman
|
||
|
schmittlauch
|
||
|
];
|
||
|
};
|
||
|
}
|