diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2021-07-30 17:01:54 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-31 01:03:23 +0200 |
commit | bb5b6b09dcea95ea65797a897fcef143835cedcb (patch) | |
tree | 9efc3b0c972013699e8858a21b9162234f4f465c /gnu/packages | |
parent | 3ac3ca367af7ecdd40b3ee304436f0018b059ce4 (diff) | |
download | guix-bb5b6b09dcea95ea65797a897fcef143835cedcb.tar.gz guix-bb5b6b09dcea95ea65797a897fcef143835cedcb.zip |
gnu: python-onnx: Delete bundled software.
* gnu/packages/machine-learning.scm (python-onnx)[source]: Delete
the 'third_party' directory.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/machine-learning.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 108bcbdfef..268ec9b5ce 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -591,7 +591,9 @@ in terms of new algorithms.") (uri (pypi-uri "onnx" version)) (patches (search-patches "python-onnx-use-system-googletest.patch")) (sha256 - (base32 "0yjv2axz2vc2ysniwislsp53fsb8f61y1warrr2ppn2d9ijml1d9")))) + (base32 "0yjv2axz2vc2ysniwislsp53fsb8f61y1warrr2ppn2d9ijml1d9")) + (modules '((guix build utils))) + (snippet '(delete-file-recursively "third_party")))) (build-system python-build-system) (native-inputs `(("cmake" ,cmake) |