python312Packages.flask-sockets: remove (#369854)

This commit is contained in:
Pavol Rusnak
2025-01-02 11:41:39 +01:00
committed by GitHub
5 changed files with 1 additions and 42 deletions
@@ -1,36 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
flask,
gevent,
gevent-websocket,
}:
buildPythonPackage rec {
pname = "Flask-Sockets";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "072927da8edca0e81e024f5787e643c87d80b351b714de95d723becb30e0643b";
};
propagatedBuildInputs = [
flask
gevent
gevent-websocket
];
# upstream doesn't have any tests, single file
doCheck = false;
pythonImportsCheck = [ "flask_sockets" ];
meta = with lib; {
description = "Elegant WebSockets for your Flask apps";
homepage = "https://github.com/heroku-python/flask-sockets";
license = licenses.mit;
maintainers = [ maintainers.prusnak ];
};
}
@@ -21,7 +21,6 @@
falcon,
fastapi,
flask,
flask-sockets,
gunicorn,
moto,
pyramid,
@@ -73,7 +72,6 @@ buildPythonPackage rec {
falcon
fastapi
flask
flask-sockets
gunicorn
moto
pyramid
@@ -6,7 +6,6 @@
buildPythonPackage,
fetchFromGitHub,
flake8,
flask-sockets,
moto,
psutil,
pytest-asyncio,
@@ -49,7 +48,6 @@ buildPythonPackage rec {
nativeCheckInputs = [
flake8
flask-sockets
moto
psutil
pytest-asyncio
+1
View File
@@ -224,6 +224,7 @@ mapAliases ({
flask-autoindex = throw "flask-autoindex was removed, as it is not compatible with flask 3.0 and unmaintained since 2020.";
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.";
flask-sockets = throw "flask-sockets has been removed as the upstream repository was archived in 2022"; # Added 2025-01-01
flowlogs_reader = flowlogs-reader; # added 2024-01-03
flufl_bounce = flufl-bounce; # added 2023-11-03
flufl_i18n = flufl-i18n; # added 2023-11-03
-2
View File
@@ -4734,8 +4734,6 @@ self: super: with self; {
flask-socketio = callPackage ../development/python-modules/flask-socketio { };
flask-sockets = callPackage ../development/python-modules/flask-sockets { };
flask-sqlalchemy = callPackage ../development/python-modules/flask-sqlalchemy { };
flask-sqlalchemy-lite = callPackage ../development/python-modules/flask-sqlalchemy-lite { };