Files
nixpkgs/pkgs/development/python-modules/flask-session-captcha/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01: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.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Tethik";
repo = "flask-session-captcha";
tag = "v${version}";
hash = "sha256-2JPJx8yQIl0bbcbshONJtja7BnSiieHzHi64A6jLpc0=";
};
build-system = [ setuptools ];
dependencies = [
captcha
flask
markupsafe
];
nativeCheckInputs = [
flask-session
flask-sqlalchemy
pytestCheckHook
];
pythonImportsCheck = [ "flask_session_captcha" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ Flakebi ];
};
}