Merge pull request #226017 from raboof/inkcut-fix-build

inkcut: fix build
This commit is contained in:
Arnout Engelen 2023-05-02 10:55:44 +02:00 committed by GitHub
commit d8ef80a9f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,7 @@
, enaml
, pyqtgraph
, pythonocc-core
, typing-extensions
}:
buildPythonPackage rec {
@ -22,6 +23,7 @@ buildPythonPackage rec {
# Until https://github.com/inkcut/inkcut/issues/105 perhaps
pyqtgraph
pythonocc-core
typing-extensions
];
# qt_occ_viewer test requires enaml.qt.QtOpenGL which got dropped somewhere

View File

@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "pythonocc-core";
version = "7.7.0";
version = "7.6.2";
src = fetchFromGitHub {
owner = "tpaviot";
repo = "pythonocc-core";
rev = "refs/tags/${version}";
hash = "sha256-YybpwiCeBnwZfYS6ZxUbycHFn2DlqYxcNMylRN5ihFM=";
hash = "sha256-45pqPQ07KYlpFwJSAYVHbzuqDQTbAvPpxReal52DCzU=";
};
postPatch = ''