summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-02-26 22:43:16 +0100
committerRicardo Wurmus <rekado@elephly.net>2025-02-26 22:44:29 +0100
commit19f9c085492c6b44410b69c539fdb9b38a727528 (patch)
treea6062b66ec2786c4b813c5cd6f662b19f9880684
parente6953ee8dbe61883a7801ea8a7bf2a95e509fdfc (diff)
gnu: Remove python-optree.
Guix already has python-optree@0.14.0. * guix-science/packages/python.scm (python-optree): Remove variable.
-rw-r--r--guix-science/packages/python.scm34
1 files changed, 0 insertions, 34 deletions
diff --git a/guix-science/packages/python.scm b/guix-science/packages/python.scm
index 7f4f6a0..dd66ad2 100644
--- a/guix-science/packages/python.scm
+++ b/guix-science/packages/python.scm
@@ -72,40 +72,6 @@
72 #:use-module (guix-science packages machine-learning) 72 #:use-module (guix-science packages machine-learning)
73 #:use-module (ice-9 match)) 73 #:use-module (ice-9 match))
74 74
75(define-public python-optree
76 (package
77 (name "python-optree")
78 (version "0.10.0")
79 (source
80 (origin
81 (method url-fetch)
82 (uri (pypi-uri "optree" version))
83 (sha256
84 (base32 "13n98dzpyavzbj1cibkimxvki0whqx0x310p361m0dlpz608hznw"))))
85 (build-system pyproject-build-system)
86 (arguments
87 (list
88 #:test-flags
89 ;; These all need a "helpers" module that is not included.
90 '(list "--ignore=tests/test_ops.py"
91 "--ignore=tests/test_typing.py"
92 "--ignore=tests/test_treespec.py"
93 "--ignore=tests/test_prefix_errors.py")))
94 (propagated-inputs (list python-typing-extensions))
95 (native-inputs
96 (list cmake-minimal
97 pybind11
98 python-pytest
99 python-pytest-cov
100 python-pytest-xdist
101 python-setuptools
102 python-wheel))
103 (home-page "https://github.com/metaopt/optree")
104 (synopsis "Optimized PyTree utilities")
105 (description "This package provides optimized @code{PyTree}
106utilities.")
107 (license license:asl2.0)))
108
109(define-public python-simple-parsing 75(define-public python-simple-parsing
110 (package 76 (package
111 (name "python-simple-parsing") 77 (name "python-simple-parsing")