···22222323 propagatedBuildInputs = [ agate sqlalchemy ];
24242525+ # crate is broken in nixpkgs, with SQLAlchemy > 1.3
2626+ # Skip tests for now as they rely on it.
2727+ doCheck = false;
2828+2529 checkInputs = [ crate nose geojson ];
26302731 checkPhase = ''
+6
pkgs/development/python-modules/crate/default.nix
···3939 description = "A Python client library for CrateDB";
4040 license = licenses.asl20;
4141 maintainers = with maintainers; [ doronbehar ];
4242+ # 2021-07-12 (@layus): Please unbreak when an update fixes compatibility
4343+ # with the version of SQLAlchemy in nixpkgs
4444+ # And also re-enable tests in pythonPackages.agate-sql.
4545+ # The version string below is intentionally split, so nixpkgs-update does
4646+ # not change it. That would make this warning pretty useless.
4747+ broken = assert version == "0.2"+"6.0"; true;
4248 };
4349}