567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
33 lines
688 B
Nix
33 lines
688 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
django,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-hcaptcha";
|
|
version = "0.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "django-hCaptcha";
|
|
hash = "sha256-slGerwzJeGWscvglMBEixc9h4eSFLWiVmUFgIirLbBo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ django ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "hcaptcha" ];
|
|
|
|
meta = {
|
|
description = "Django hCaptcha provides a simple way to protect your django forms using hCaptcha";
|
|
homepage = "https://github.com/AndrejZbin/django-hcaptcha";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ ambroisie ];
|
|
};
|
|
}
|