ceph: drop sqlalchemy override

The flask-sqlalchemy package requires sqlalchemy>=2.0.16 now.
This commit is contained in:
Martin Weinelt 2023-10-25 23:08:10 +02:00
parent 75a52265bd
commit 8c462229c3
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -165,18 +165,6 @@ let
# Watch out for python <> boost compatibility
python = python310.override {
packageOverrides = self: super: {
sqlalchemy = super.sqlalchemy.overridePythonAttrs rec {
version = "1.4.46";
src = fetchPypi {
pname = "SQLAlchemy";
inherit version;
hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
};
};
};