about summary refs log tree commit diff
path: root/pkgs/development/python-modules/agate-sql
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-09 16:34:23 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-09 16:34:23 +0100
commitff47dc334555620099a8266bcf3f17c248556b77 (patch)
tree73a9ea221696ee33bfb2b875901de98f62cd6277 /pkgs/development/python-modules/agate-sql
parent96d44fa9279769dfa497edd616cacd2ef71d38c4 (diff)
python310Packages.agate-sql: Mark broken with sqlachemy 2.0
The upstream explicitly pins sqlalchemy<2, so supporting it is not
possible right now. Application can downgrade sqlalchemy instead.
Diffstat (limited to 'pkgs/development/python-modules/agate-sql')
-rw-r--r--pkgs/development/python-modules/agate-sql/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/agate-sql/default.nix b/pkgs/development/python-modules/agate-sql/default.nix
index 2470506a009f7..2b5863d198373 100644
--- a/pkgs/development/python-modules/agate-sql/default.nix
+++ b/pkgs/development/python-modules/agate-sql/default.nix
@@ -27,6 +27,8 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "agatesql" ];
 
   meta = with lib; {
+    # https://github.com/wireservice/agate-sql/commit/74af1badd85408909ea72cb6ca8c0b223d178c6f
+    broken = lib.versionAtLeast sqlalchemy.version "2.0";
     description = "Adds SQL read/write support to agate.";
     homepage = "https://github.com/wireservice/agate-sql";
     license = with licenses; [ mit ];