Commit acaea348 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.sqlsoup: remove

sqlsoup has been removed as it is incompatible with modern
SQLAlchemy and unmaintained
parent 56c7ebdc
Loading
Loading
Loading
Loading
+0 −23
Original line number Diff line number Diff line
{ buildPythonPackage, fetchPypi, lib, sqlalchemy, nose }:

buildPythonPackage rec {
  pname = "sqlsoup";
  version = "0.9.1";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mj00fhxj75ac3i8xk9jmm7hvcjz9p4x2r3yndcwsgb659rvgbrg";
  };

  propagatedBuildInputs = [ sqlalchemy ];
  nativeCheckInputs = [ nose ];

  meta = with lib; {
    description = "A one step database access tool, built on the SQLAlchemy ORM";
    homepage = "https://github.com/zzzeek/sqlsoup";
    license = licenses.mit;
    maintainers = [];
    broken = true; # incompatible with sqlalchemy>=1.4 and unmaintained since 2016
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -493,6 +493,7 @@ mapAliases ({
  sphinx-navtree = throw "sphinx-navtree has been removed since it is not compatible with sphinx 3.3 and unmaintained"; # added 2023-07-03
  sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28
  SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23
  sqlsoup = throw "sqlsoup has been removed as it is incompatible with modern SQLAlchemy and unmaintained"; # added 2024-05-13
  subdownloader = throw "subdownloader has been removed, because it depended on pyqt4"; # added 2022-06-09
  suds-jurko = throw "suds-jurko has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-02-27
  supervise_api = supervise-api; # added 2023-10-11
+0 −2
Original line number Diff line number Diff line
@@ -14478,8 +14478,6 @@ self: super: with self; {
  sqlparse = callPackage ../development/python-modules/sqlparse { };
  sqlsoup = callPackage ../development/python-modules/sqlsoup { };
  sqltrie = callPackage ../development/python-modules/sqltrie { };
  squarify = callPackage ../development/python-modules/squarify { };