biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / django-hcaptcha / default.nix
blob7f0eff2377007fbcc6ea844eb3d7fb52a39a22df
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   django,
6 }:
8 buildPythonPackage rec {
9   pname = "django-hcaptcha";
10   version = "0.2.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit version;
15     pname = "django-hCaptcha";
16     hash = "sha256-slGerwzJeGWscvglMBEixc9h4eSFLWiVmUFgIirLbBo=";
17   };
19   propagatedBuildInputs = [ django ];
21   # No tests
22   doCheck = false;
24   pythonImportsCheck = [ "hcaptcha" ];
26   meta = with lib; {
27     description = "Django hCaptcha provides a simple way to protect your django forms using hCaptcha";
28     homepage = "https://github.com/AndrejZbin/django-hcaptcha";
29     license = licenses.bsd3;
30     maintainers = with maintainers; [ ambroisie ];
31   };