Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions pkgs/development/python-modules/onnx/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@
, nbval
, numpy
, parameterized
, protobuf
, protobuf_21
, pybind11
, pytestCheckHook
, pythonOlder
, tabulate
, typing-extensions
, abseil-cpp
, google-re2
, pillow
, protobuf
}:

let
Expand All @@ -39,9 +42,13 @@ in buildPythonPackage rec {

buildInputs = [
abseil-cpp
protobuf
google-re2
pillow
];

propagatedBuildInputs = [
protobuf_21
protobuf
numpy
typing-extensions
Expand All @@ -66,10 +73,6 @@ in buildPythonPackage rec {
--replace 'include(googletest)' ""
substituteInPlace cmake/unittest.cmake \
--replace 'googletest)' ')'
'' + ''
# remove this override in 1.15 that will enable to set the CMAKE_CXX_STANDARD with cmakeFlags
substituteInPlace CMakeLists.txt \
--replace 'CMAKE_CXX_STANDARD 11' 'CMAKE_CXX_STANDARD 17'
'';

preConfigure = ''
Expand Down