Unverified Commit d0d2104a authored by Flakebi's avatar Flakebi
Browse files

python310Packages.captcha: init at 0.4

parent df06e8ef
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, buildPythonPackage
, nose
, pillow
, wheezy-captcha
}:

buildPythonPackage rec {
  pname = "captcha";
  version = "0.4";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "lepture";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-uxUjoACN65Cx5LMKpT+bZhKpf2JRSaEyysnYUgZntp8=";
  };

  propagatedBuildInputs = [ pillow ];

  pythonImportsCheck = [ "captcha" ];

  nativeCheckInputs = [ nose wheezy-captcha ];

  checkPhase = ''
    nosetests -s
  '';

  meta = with lib; {
    description = "A captcha library that generates audio and image CAPTCHAs";
    homepage = "https://github.com/lepture/captcha";
    license = licenses.bsd3;
    maintainers = with maintainers; [ Flakebi ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1607,6 +1607,8 @@ self: super: with self; {
    inherit (pkgs) capstone;
  };

  captcha = callPackage ../development/python-modules/captcha { };

  capturer = callPackage ../development/python-modules/capturer { };

  carbon = callPackage ../development/python-modules/carbon { };