python312Packages.pivy: 0.6.8 -> 0.6.9 (#344470)

This commit is contained in:
OTABI Tomoya 2024-09-29 13:56:45 +09:00 committed by GitHub
commit af572513e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pkgs,
qtbase,
qmake,
@ -10,16 +11,18 @@
buildPythonPackage rec {
pname = "pivy";
version = "0.6.8";
format = "setuptools";
version = "0.6.9";
pyproject = true;
src = fetchFromGitHub {
owner = "coin3d";
repo = "pivy";
rev = "refs/tags/${version}";
hash = "sha256-y72nzZAelyRDR2JS73/0jo2x/XiDZpsERPZV3gzIhAI=";
hash = "sha256-wWM8eKTehWCIbRxxWkZ4YrYyeIJuzQaBOUMrW9a5MVo=";
};
build-system = [ setuptools ];
dontUseCmakeConfigure = true;
nativeBuildInputs = with pkgs; [
@ -60,6 +63,8 @@ buildPythonPackage rec {
\$'{Coin_INCLUDE_DIR}'\;\$'{SoQt_INCLUDE_DIRS}'
'';
pythonImportsCheck = [ "pivy" ];
meta = with lib; {
homepage = "https://github.com/coin3d/pivy/";
description = "Python binding for Coin";