mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
python312Packages.pivy: 0.6.8 -> 0.6.9 (#344470)
This commit is contained in:
commit
af572513e1
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user