···2223 propagatedBuildInputs = [ agate sqlalchemy ];
2425+ # crate is broken in nixpkgs, with SQLAlchemy > 1.3
26+ # Skip tests for now as they rely on it.
27+ doCheck = false;
28+29 checkInputs = [ crate nose geojson ];
3031 checkPhase = ''
+6
pkgs/development/python-modules/crate/default.nix
···39 description = "A Python client library for CrateDB";
40 license = licenses.asl20;
41 maintainers = with maintainers; [ doronbehar ];
00000042 };
43}
···39 description = "A Python client library for CrateDB";
40 license = licenses.asl20;
41 maintainers = with maintainers; [ doronbehar ];
42+ # 2021-07-12 (@layus): Please unbreak when an update fixes compatibility
43+ # with the version of SQLAlchemy in nixpkgs
44+ # And also re-enable tests in pythonPackages.agate-sql.
45+ # The version string below is intentionally split, so nixpkgs-update does
46+ # not change it. That would make this warning pretty useless.
47+ broken = assert version == "0.2"+"6.0"; true;
48 };
49}