bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
flit-core,
|
|
flask,
|
|
cachelib,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-session";
|
|
version = "0.5.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pallets-eco";
|
|
repo = "flask-session";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-t8w6ZS4gBDpnnKvL3DLtn+rRLQNJbrT2Hxm4f3+a3Xc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
flask
|
|
cachelib
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# The rest of the tests require database servers and optional db connector dependencies
|
|
pytestFlagsArray = [
|
|
"-k"
|
|
"'null_session or filesystem_session'"
|
|
];
|
|
|
|
pythonImportsCheck = [ "flask_session" ];
|
|
|
|
meta = with lib; {
|
|
description = "Flask extension that adds support for server-side sessions";
|
|
homepage = "https://github.com/pallets-eco/flask-session";
|
|
changelog = "https://github.com/pallets-eco/flask-session/releases/tag/${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ zhaofengli ];
|
|
};
|
|
}
|