about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-01 15:55:32 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 23:57:12 +0100
commitc04327690b7362b5d6dcb0c37e4a480a4aa93431 (patch)
treedfa546f26a4abe89ad1882c262cc3aba6be89fa4
parent04852817060b7295c77d0ee6e00062f8d19e4809 (diff)
python310Packages.databases: Mark broken with sqlalchemy>=2.0
The upstream indicated that they have no resources to develop support
themselves.
-rw-r--r--pkgs/development/python-modules/databases/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/databases/default.nix b/pkgs/development/python-modules/databases/default.nix
index b01564c7eeb32..f3bbe6ace9d50 100644
--- a/pkgs/development/python-modules/databases/default.nix
+++ b/pkgs/development/python-modules/databases/default.nix
@@ -78,5 +78,7 @@ buildPythonPackage rec {
     changelog = "https://github.com/encode/databases/releases/tag/${version}";
     license = licenses.bsd3;
     maintainers = with maintainers; [ costrouc ];
+    # https://github.com/encode/databases/issues/530
+    broken = lib.versionAtLeast sqlalchemy.version "2.0.0";
   };
 }