lol

python3Packages.dataset: use sqlalchemy_1_4

linsui 3ef0b7d5 67c5e50a

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