python310Packages.datatable: break only for py310

This commit is contained in:
Someone Serge 2022-05-12 18:30:42 +03:00
parent 9f82afd3fe
commit 9bee4489da
No known key found for this signature in database
GPG key ID: 7B0E3B1390D61DA4

View file

@ -6,6 +6,7 @@
, llvm
, pytestCheckHook
, typesentry
, isPy310
}:
buildPythonPackage rec {
@ -63,6 +64,6 @@ buildPythonPackage rec {
maintainers = with maintainers; [ abbradar ];
# uses custom build system and adds -Wunused-variable -Werror
# warning: dt::expr::doc_first defined but not used [-Wunused-variable]
broken = true;
broken = isPy310;
};
}