python3Packages.dataset: mark as broken

dataset depends on versions of SQLAlchemy older than what nixpkgs
provides. see https://github.com/pudo/dataset/issues/411
This commit is contained in:
xfnw 2023-05-09 17:05:25 -04:00
parent 2be2bef644
commit d6ba3f319c

View file

@ -37,5 +37,8 @@ buildPythonPackage rec {
homepage = "https://dataset.readthedocs.io";
license = licenses.mit;
maintainers = with maintainers; [ xfnw ];
# SQLAlchemy >= 2.0.0 is unsupported
# https://github.com/pudo/dataset/issues/411
broken = true;
};
}