depot/third_party/nixpkgs/pkgs/development/python-modules/pivy/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

69 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pkgs,
qtbase,
qmake,
soqt,
}:
buildPythonPackage rec {
pname = "pivy";
version = "0.6.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "coin3d";
repo = "pivy";
rev = "refs/tags/${version}";
hash = "sha256-y72nzZAelyRDR2JS73/0jo2x/XiDZpsERPZV3gzIhAI=";
};
dontUseCmakeConfigure = true;
nativeBuildInputs = with pkgs; [
swig
qmake
cmake
];
buildInputs =
with pkgs;
with xorg;
[
coin3d
soqt
qtbase
libGLU
libGL
libXi
libXext
libSM
libICE
libX11
];
env.NIX_CFLAGS_COMPILE = toString [
"-I${qtbase.dev}/include/QtCore"
"-I${qtbase.dev}/include/QtGui"
"-I${qtbase.dev}/include/QtOpenGL"
"-I${qtbase.dev}/include/QtWidgets"
];
dontUseQmakeConfigure = true;
dontWrapQtApps = true;
doCheck = false;
postPatch = ''
substituteInPlace distutils_cmake/CMakeLists.txt --replace \$'{SoQt_INCLUDE_DIRS}' \
\$'{Coin_INCLUDE_DIR}'\;\$'{SoQt_INCLUDE_DIRS}'
'';
meta = with lib; {
homepage = "https://github.com/coin3d/pivy/";
description = "Python binding for Coin";
license = licenses.bsd0;
maintainers = with maintainers; [ gebner ];
};
}