Make gaia unsupported with python2

This commit is contained in:
Doron Behar 2019-10-08 10:10:31 +03:00
parent 97769d4cfd
commit a45c9f541c

View file

@ -2372,7 +2372,8 @@ in {
fx2 = callPackage ../development/python-modules/fx2 { };
gaia = (toPythonModule (pkgs.gaia.override {
# gaia isn't supported with python3 and it's not available from pypi
gaia = disabledIf (isPyPy || isPy3k) (toPythonModule (pkgs.gaia.override {
pythonPackages = self;
pythonSupport = true;
}));