nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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.

+2
+2
pkgs/development/python-modules/agate-sql/default.nix
··· 27 27 pythonImportsCheck = [ "agatesql" ]; 28 28 29 29 meta = with lib; { 30 + # https://github.com/wireservice/agate-sql/commit/74af1badd85408909ea72cb6ca8c0b223d178c6f 31 + broken = lib.versionAtLeast sqlalchemy.version "2.0"; 30 32 description = "Adds SQL read/write support to agate."; 31 33 homepage = "https://github.com/wireservice/agate-sql"; 32 34 license = with licenses; [ mit ];