pythonPackages.futures: null when Python 3

This commit is contained in:
Frederik Rietdijk 2016-09-19 11:46:36 +02:00
parent 0211fe0c65
commit 61859b9d59

View file

@ -11016,7 +11016,7 @@ in modules // {
};
};
futures = buildPythonPackage rec {
futures = if !(isPy3k) then (buildPythonPackage rec {
name = "futures-${version}";
version = "3.0.5";
@ -11041,7 +11041,7 @@ in modules // {
license = licenses.bsd2;
maintainers = with maintainers; [ garbas ];
};
};
}) else null;
futures_2_2 = self.futures.override rec {
version = "2.2.0";