python311Packages.flask-sessionstore: drop
Incompatible with Flask 3.0 and unmaintained since 2017.
This commit is contained in:
parent
d2c9ee5630
commit
569fb19344
@ -1,35 +0,0 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -165,6 +165,7 @@ mapAliases ({
|
||||
flask_testing = flask-testing; # added 2022-04-25
|
||||
flask_wtf = flask-wtf; # added 2022-05-24
|
||||
flask-basicauth = throw "flask-basicauth was removed, as it is not compatible with flask 3.0 and unmaintained since 2016.";
|
||||
flask-sessionstore = throw "flask-sessionstore was removed, as it is not compatible with flask 3.0 and unmaintained since 2017.";
|
||||
flowlogs_reader = flowlogs-reader; # added 2024-01-03
|
||||
FormEncode = formencode; # added 2023-02-19
|
||||
foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
|
||||
|
@ -4169,8 +4169,6 @@ self: super: with self; {
|
||||
|
||||
flask-session-captcha = callPackage ../development/python-modules/flask-session-captcha { };
|
||||
|
||||
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 New Issue
Block a user