python313Packages.flask-unsign: init at 1.2.1

Command line tool to fetch, decode, brute-force and craft session
cookies of a Flask application

https://github.com/Paradoxis/Flask-Unsign
This commit is contained in:
Fabian Affolter
2025-07-06 09:11:53 +02:00
parent 4b74f823e6
commit 2a96f8ef5d
3 changed files with 53 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
{ python3Packages }: with python3Packages; toPythonApplication flask-unsign
@@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
itsdangerous,
markupsafe,
pytestCheckHook,
requests,
setuptools,
werkzeug,
}:
buildPythonPackage rec {
pname = "flask-unsign";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Paradoxis";
repo = "Flask-Unsign";
tag = "v${version}";
hash = "sha256-/WK3g6Ef3mSKeT3aaSAh5J8estUN4sNmM9Tq9An/18A=";
};
build-system = [ setuptools ];
dependencies = [
flask
itsdangerous
markupsafe
requests
werkzeug
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "flask_unsign" ];
pytestFlagsArray = [ "tests/flask_unsign.py" ];
meta = {
description = "Command line tool to fetch, decode, brute-force and craft session cookies of Flask applications";
homepage = "https://github.com/Paradoxis/Flask-Unsign";
changelog = "https://github.com/Paradoxis/Flask-Unsign/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "flask-unsign";
};
}
+2
View File
@@ -5236,6 +5236,8 @@ self: super: with self; {
flask-themes2 = callPackage ../development/python-modules/flask-themes2 { };
flask-unsign = callPackage ../development/python-modules/flask-unsign { };
flask-versioned = callPackage ../development/python-modules/flask-versioned { };
flask-webtest = callPackage ../development/python-modules/flask-webtest { };