mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 12:34:15 +00:00
pythonPackages.crate: mark broken (#130017)
This commit is contained in:
parent
0794702083
commit
46de2b8ffb
@ -22,6 +22,10 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [ agate sqlalchemy ];
|
||||
|
||||
# crate is broken in nixpkgs, with SQLAlchemy > 1.3
|
||||
# Skip tests for now as they rely on it.
|
||||
doCheck = false;
|
||||
|
||||
checkInputs = [ crate nose geojson ];
|
||||
|
||||
checkPhase = ''
|
||||
|
@ -39,5 +39,11 @@ buildPythonPackage rec {
|
||||
description = "A Python client library for CrateDB";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ doronbehar ];
|
||||
# 2021-07-12 (@layus): Please unbreak when an update fixes compatibility
|
||||
# with the version of SQLAlchemy in nixpkgs
|
||||
# And also re-enable tests in pythonPackages.agate-sql.
|
||||
# The version string below is intentionally split, so nixpkgs-update does
|
||||
# not change it. That would make this warning pretty useless.
|
||||
broken = assert version == "0.2"+"6.0"; true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user