0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

python312Packages.flask-sockets: remove

flask-sockets has been removed as the upstream repository was archived in 2022
This commit is contained in:
natsukium 2025-01-01 13:35:21 +09:00
parent 4a4790f0ff
commit ef133575fe
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53
5 changed files with 1 additions and 42 deletions

View file

@ -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 ];
};
}

View file

@ -21,7 +21,6 @@
falcon, falcon,
fastapi, fastapi,
flask, flask,
flask-sockets,
gunicorn, gunicorn,
moto, moto,
pyramid, pyramid,
@ -73,7 +72,6 @@ buildPythonPackage rec {
falcon falcon
fastapi fastapi
flask flask
flask-sockets
gunicorn gunicorn
moto moto
pyramid pyramid

View file

@ -6,7 +6,6 @@
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
flake8, flake8,
flask-sockets,
moto, moto,
psutil, psutil,
pytest-asyncio, pytest-asyncio,
@ -49,7 +48,6 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
flake8 flake8
flask-sockets
moto moto
psutil psutil
pytest-asyncio pytest-asyncio

View file

@ -223,6 +223,7 @@ mapAliases ({
flask-autoindex = throw "flask-autoindex was removed, as it is not compatible with flask 3.0 and unmaintained since 2020."; 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-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-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 flowlogs_reader = flowlogs-reader; # added 2024-01-03
flufl_bounce = flufl-bounce; # added 2023-11-03 flufl_bounce = flufl-bounce; # added 2023-11-03
flufl_i18n = flufl-i18n; # added 2023-11-03 flufl_i18n = flufl-i18n; # added 2023-11-03

View file

@ -4736,8 +4736,6 @@ self: super: with self; {
flask-socketio = callPackage ../development/python-modules/flask-socketio { }; 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 = callPackage ../development/python-modules/flask-sqlalchemy { };
flask-sqlalchemy-lite = callPackage ../development/python-modules/flask-sqlalchemy-lite { }; flask-sqlalchemy-lite = callPackage ../development/python-modules/flask-sqlalchemy-lite { };