about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-08 14:37:56 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-08 14:37:56 +0100
commit1a16b3148b2a71cc6d4f304817290f724288c350 (patch)
tree05036e28f01b11659f286210692ae186fa3e801b
parent6a96bd05fbcdfab65bbb94221dcd40c107ed5c97 (diff)
python310Packages.pecan: Disable with sqlalchemy 2.0
Keep the package around for applications, that can downgrade sqlalchemy,
like ceph.
-rw-r--r--pkgs/development/python-modules/pecan/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pecan/default.nix b/pkgs/development/python-modules/pecan/default.nix
index 3ee82e584050e..40b9d437993b6 100644
--- a/pkgs/development/python-modules/pecan/default.nix
+++ b/pkgs/development/python-modules/pecan/default.nix
@@ -51,6 +51,7 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
+    broken = lib.versionAtLeast sqlalchemy.version "2.0";
     changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
     description = "WSGI object-dispatching web framework";
     homepage = "https://www.pecanpy.org/";