Merge pull request #131176 from Mic92/gym

python3Packages.gym: fix build
This commit is contained in:
Jörg Thalheim 2021-07-23 07:35:19 +01:00 committed by GitHub
commit c641d63518
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,11 @@ buildPythonPackage rec {
scipy
];
postPatch = ''
substituteInPlace setup.py \
--replace "Pillow<=8.2.0" "Pillow"
'';
# The test needs MuJoCo that is not free library.
doCheck = false;