Revert "pythonPackages.futures: null when Python 3"

This reverts commit 61859b9d59.

This broke eval because futures_2_2 overrides the derivation.
This commit is contained in:
Frederik Rietdijk 2016-09-19 14:23:33 +02:00
parent 4fdc9fa7d9
commit 98d16045cc

View file

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