Unverified Commit 32799c1f authored by natsukium's avatar natsukium
Browse files

python312Packages.flask-common: remove

flask-common was removed, as it is not compatible with flask 3.0 and
unmaintained since 2018
parent 6c2d8a10
Loading
Loading
Loading
Loading
+0 −39
Original line number Diff line number Diff line
{
  lib,
  fetchPypi,
  buildPythonPackage,
  crayons,
  flask,
  flask-caching,
  gunicorn,
  maya,
  meinheld,
  whitenoise,
}:

buildPythonPackage rec {
  pname = "flask-common";
  version = "0.3.0";

  src = fetchPypi {
    pname = "Flask-Common";
    inherit version;
    sha256 = "13d99f2dbc0a332b8bc4b2cc394d3e48f89672c266868e372cd9d7b433d921a9";
  };

  propagatedBuildInputs = [
    crayons
    flask
    flask-caching
    gunicorn
    maya
    meinheld
    whitenoise
  ];

  meta = with lib; {
    description = "Flask extension with lots of common time-savers";
    homepage = "https://github.com/kennethreitz/flask-common";
    license = licenses.asl20; # XXX: setup.py lists BSD but git repo has Apache 2.0 LICENSE
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -226,6 +226,7 @@ mapAliases ({
  flask_testing = flask-testing; # added 2022-04-25
  flask_wtf = flask-wtf; # added 2022-05-24
  flask-autoindex = throw "flask-autoindex was removed, as it is not compatible with flask 3.0 and unmaintained since 2020.";
  flask-common = throw "flask-common was removed, as it is not compatible with flask 3.0 and unmaintained since 2018."; # added 2025-01-11
  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
+0 −2
Original line number Diff line number Diff line
@@ -4671,8 +4671,6 @@ self: super: with self; {
  flask = callPackage ../development/python-modules/flask { };
  flask-common = callPackage ../development/python-modules/flask-common { };
  flask-compress = callPackage ../development/python-modules/flask-compress { };
  flask-cors = callPackage ../development/python-modules/flask-cors { };