about summary refs log tree commit diff
path: root/pkgs/development/python-modules/onnx
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-11-10 09:21:59 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-10 15:01:21 -0800
commitedba7d603aab7aceedaef28a353ddafca9307785 (patch)
tree4fcdc7cbd9a6fb6bce63b34ed3e85cd4aeea705b /pkgs/development/python-modules/onnx
parent39ea613da169536989f68eace33d2a73668e08b5 (diff)
python37Packages.onnx: 1.7.0 -> 1.8.0
Diffstat (limited to 'pkgs/development/python-modules/onnx')
-rw-r--r--pkgs/development/python-modules/onnx/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/onnx/default.nix b/pkgs/development/python-modules/onnx/default.nix
index 6c0560bbaffcd..278d7c1df0467 100644
--- a/pkgs/development/python-modules/onnx/default.nix
+++ b/pkgs/development/python-modules/onnx/default.nix
@@ -18,7 +18,7 @@
 
 buildPythonPackage rec {
   pname = "onnx";
-  version = "1.7.0";
+  version = "1.8.0";
 
   # Due to Protobuf packaging issues this build of Onnx with Python 2 gives
   # errors on import.
@@ -27,7 +27,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0j6rgfbhsw3a8id8pyg18y93k68lbjbj1kq6qia36h69f6pvlyjy";
+    sha256 = "5f787fd3ce1290e12da335237b3b921152157e51aa09080b65631b3ce3fcc50c";
   };
 
   nativeBuildInputs = [ cmake ];