Unverified Commit ef133575 authored by natsukium's avatar natsukium
Browse files

python312Packages.flask-sockets: remove

flask-sockets has been removed as the upstream repository was archived in 2022
parent 4a4790f0
Loading
Loading
Loading
Loading
+0 −36
Original line number Diff line number Diff line
{
  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 ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
@@ -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-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
+0 −2
Original line number Diff line number Diff line
@@ -4736,8 +4736,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 { };