pythonPackages.crate: mark broken (#130017)

authored by Guillaume Maudoux and committed by GitHub 46de2b8f 07947020

+10
+4
pkgs/development/python-modules/agate-sql/default.nix
··· 22 22 23 23 propagatedBuildInputs = [ agate sqlalchemy ]; 24 24 25 + # crate is broken in nixpkgs, with SQLAlchemy > 1.3 26 + # Skip tests for now as they rely on it. 27 + doCheck = false; 28 + 25 29 checkInputs = [ crate nose geojson ]; 26 30 27 31 checkPhase = ''
+6
pkgs/development/python-modules/crate/default.nix
··· 39 39 description = "A Python client library for CrateDB"; 40 40 license = licenses.asl20; 41 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; 42 48 }; 43 49 }