mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.pythonocc-core: init at 0.18.1
This commit is contained in:
parent
01ee9c8dd4
commit
5a3652520d
2 changed files with 41 additions and 0 deletions
37
pkgs/development/python-modules/pythonocc-core/default.nix
Normal file
37
pkgs/development/python-modules/pythonocc-core/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ stdenv, python, fetchFromGitHub, cmake, swig, ninja,
|
||||
opencascade, smesh, freetype, libGL, libGLU, libX11 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pythonocc-core";
|
||||
version = "0.18.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tpaviot";
|
||||
repo = "pythonocc-core";
|
||||
rev = version;
|
||||
sha256 = "1jk4y7f75z9lyawffpfkr50qw5452xzi1imcdlw9pdvf4i0y86k3";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake swig ninja ];
|
||||
buildInputs = [
|
||||
python opencascade smesh
|
||||
freetype libGL libGLU libX11
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-Wno-dev"
|
||||
"-DPYTHONOCC_INSTALL_DIRECTORY=${placeholder "out"}/${python.sitePackages}/OCC"
|
||||
|
||||
"-DSMESH_INCLUDE_PATH=${smesh}/include/smesh"
|
||||
"-DSMESH_LIB_PATH=${smesh}/lib"
|
||||
"-DPYTHONOCC_WRAP_SMESH=TRUE"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python wrapper for the OpenCASCADE 3D modeling kernel";
|
||||
homepage = "https://github.com/tpaviot/pythonocc-core";
|
||||
license = licenses.lgpl3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
};
|
||||
}
|
|
@ -782,6 +782,10 @@ in {
|
|||
|
||||
python-mnist = callPackage ../development/python-modules/python-mnist { };
|
||||
|
||||
pythonocc-core = toPythonModule (callPackage ../development/python-modules/pythonocc-core {
|
||||
inherit (pkgs.xorg) libX11;
|
||||
});
|
||||
|
||||
python-igraph = callPackage ../development/python-modules/python-igraph {
|
||||
pkgconfig = pkgs.pkgconfig;
|
||||
igraph = pkgs.igraph;
|
||||
|
|
Loading…
Reference in a new issue