587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
52 lines
1.1 KiB
Nix
52 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 = "A 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 ];
|
|
};
|
|
}
|