lol

python3Packages.dataset: use sqlalchemy_1_4

linsui 3ef0b7d5 67c5e50a

+5 -6
+5 -6
pkgs/development/python-modules/dataset/default.nix
··· 5 5 buildPythonPackage, 6 6 fetchPypi, 7 7 pythonOlder, 8 - sqlalchemy, 8 + sqlalchemy_1_4, 9 9 }: 10 10 11 11 buildPythonPackage rec { ··· 21 21 }; 22 22 23 23 propagatedBuildInputs = [ 24 - alembic 24 + (alembic.override { sqlalchemy = sqlalchemy_1_4; }) 25 25 banal 26 - sqlalchemy 26 + # SQLAlchemy >= 2.0.0 is unsupported 27 + # https://github.com/pudo/dataset/issues/411 28 + sqlalchemy_1_4 27 29 ]; 28 30 29 31 # checks attempt to import nonexistent module 'test.test' and fail ··· 36 38 homepage = "https://dataset.readthedocs.io"; 37 39 license = licenses.mit; 38 40 maintainers = with maintainers; [ xfnw ]; 39 - # SQLAlchemy >= 2.0.0 is unsupported 40 - # https://github.com/pudo/dataset/issues/411 41 - broken = true; 42 41 }; 43 42 }