python310Packages.django-hcaptcha: init at 0.2.0
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, django
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-hcaptcha";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "django-hCaptcha";
|
||||
sha256 = "sha256-slGerwzJeGWscvglMBEixc9h4eSFLWiVmUFgIirLbBo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
django
|
||||
];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "hcaptcha" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Django hCaptcha provides a simple way to protect your django forms using hCaptcha";
|
||||
homepage = "https://github.com/AndrejZbin/django-hcaptcha";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ambroisie ];
|
||||
};
|
||||
}
|
||||
@@ -2557,6 +2557,8 @@ in {
|
||||
|
||||
django-haystack = callPackage ../development/python-modules/django-haystack { };
|
||||
|
||||
django-hcaptcha = callPackage ../development/python-modules/django-hcaptcha { };
|
||||
|
||||
django-health-check = callPackage ../development/python-modules/django-health-check { };
|
||||
|
||||
django_hijack_admin = callPackage ../development/python-modules/django-hijack-admin { };
|
||||
|
||||
Reference in New Issue
Block a user