python311Packages.sqlsoup: remove

sqlsoup has been removed as it is incompatible with modern
SQLAlchemy and unmaintained
This commit is contained in:
Fabian Affolter 2024-05-13 15:39:40 +02:00
parent 56c7ebdc5e
commit acaea3480b
3 changed files with 1 additions and 25 deletions

View File

@ -1,23 +0,0 @@
{ 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
};
}

View File

@ -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

View File

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