My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-hcaptcha/default.nix

32 lines
667 B

{ 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 ];
};
}