python.pkgs.pygame_sdl2: python3 tests are non-functional

This commit is contained in:
Jörg Thalheim 2017-08-27 07:08:53 +01:00
parent 3eae39b38a
commit b0e90b99db

View file

@ -1,4 +1,4 @@
{ stdenv, pkgs, buildPythonPackage, fetchFromGitHub
{ stdenv, pkgs, buildPythonPackage, fetchFromGitHub, isPy27
, cython, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer, libjpeg, libpng }:
buildPythonPackage rec {
@ -18,6 +18,9 @@ buildPythonPackage rec {
cython libjpeg libpng
];
doCheck = isPy27; # python3 tests are non-functional
postInstall = ''
( cd "$out"/include/python*/ ;
ln -s pygame-sdl2 pygame_sdl2 || true ; )