python.pkgs.roboschool: disable for python2

This has never worked.
This commit is contained in:
Timo Kaufmann 2019-05-28 14:00:17 +02:00
parent 446ac90e05
commit 97ec74edc6

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, isPy3k
, python
, fetchFromGitHub
, fetchpatch
@ -23,6 +24,9 @@ buildPythonPackage rec {
sha256 = "1s7rp5bbiglnrfm33wf7x7kqj0ks3b21bqyz18c5g6vx39rxbrmh";
};
# fails to find boost_python for some reason
disabled = !isPy3k;
propagatedBuildInputs = [
gym
];