Files
nixpkgs/pkgs/development/python-modules/flask-session-captcha/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

53 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
captcha,
fetchFromGitHub,
flask,
flask-session,
flask-sqlalchemy,
markupsafe,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "flask-session-captcha";
version = "1.4.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Tethik";
repo = "flask-session-captcha";
rev = "refs/tags/v${version}";
hash = "sha256-hf6ifTrsWvgvUHFAPdS8ns8aKN02zquLGCq5ouQF0ck=";
};
build-system = [ setuptools ];
dependencies = [
captcha
flask
markupsafe
];
nativeCheckInputs = [
flask-session
flask-sqlalchemy
pytestCheckHook
];
pythonImportsCheck = [ "flask_session_captcha" ];
meta = with lib; {
description = "Captcha implemention for flask";
homepage = "https://github.com/Tethik/flask-session-captcha";
changelog = "https://github.com/Tethik/flask-session-captcha/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ Flakebi ];
};
}