Merge pull request #68433 from gebner/pivy-build

pythonPackages.pivy: fix build
This commit is contained in:
Gabriel Ebner 2019-09-10 17:40:03 +01:00 committed by GitHub
commit a9b1f444b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,9 @@ buildPythonPackage rec {
"-I${pkgs.qt5.qtbase.dev}/include/QtWidgets"
];
dontUseQmakeConfigure = true;
dontUseCmakeConfigure = true;
doCheck = false;
postPatch = ''
@ -39,6 +42,7 @@ buildPythonPackage rec {
homepage = http://pivy.coin3d.org/;
description = "A Python binding for Coin";
license = licenses.bsd0;
maintainers = with maintainers; [ gebner ];
};
}