python10Packages.flask-sessionstore: init at 0.4.5
This commit is contained in:
parent
d0d2104a01
commit
6871904642
2 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, flask
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flask-sessionstore";
|
||||
version = "0.4.5";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "Flask-Sessionstore";
|
||||
inherit version;
|
||||
hash = "sha256-AQ3jWrnw2UI8L3nFEx4AhDwGP4R8Tr7iBMsDS5jLQPQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ flask ];
|
||||
|
||||
pythonImportsCheck = [ "flask_sessionstore" ];
|
||||
|
||||
nativeCheckInputs = [ nose ];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests -s
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Session Storage Backends for Flask";
|
||||
homepage = "https://github.com/mcrowson/flask-sessionstore";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ Flakebi ];
|
||||
};
|
||||
}
|
|
@ -3625,6 +3625,8 @@ self: super: with self; {
|
|||
|
||||
flask-session = callPackage ../development/python-modules/flask-session { };
|
||||
|
||||
flask-sessionstore = callPackage ../development/python-modules/flask-sessionstore { };
|
||||
|
||||
flask-security-too = callPackage ../development/python-modules/flask-security-too { };
|
||||
|
||||
flask-silk = callPackage ../development/python-modules/flask-silk { };
|
||||
|
|
Loading…
Reference in a new issue