Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-30 07:48:31

0001 from spack.package import *
0002 
0003 try:
0004     from spack_repo.builtin.packages.py_uproot.package import PyUproot as BuiltinPyUproot
0005 except ImportError:
0006     from spack.pkg.builtin.py_uproot import PyUproot as BuiltinPyUproot
0007 
0008 class PyUproot(BuiltinPyUproot):
0009     patch(
0010         "https://github.com/scikit-hep/uproot5/commit/88e69d47caa8cdb1ab0f47ffa27b2a6d113896d9.patch?full_index=1",
0011         sha256="a5120c569b5402870851d38ad4a0ed357629519010f4e38e0770acdd6a7eeb8e",
0012         when="@5.5.2:5.7.1",
0013     )
0014     # Fix RNTuple _from_zigzag to apply bit shift on unsigned integers
0015     # https://github.com/scikit-hep/uproot5/pull/1593
0016     patch(
0017         "https://github.com/scikit-hep/uproot5/commit/ee1b1d550802ad9579a8c64d6a63903c7adbb06d.patch?full_index=1",
0018         sha256="094390ad52b3e28dc6c91a93b855b3ffe2e460adaf79f877b8389cfd28599aa0",
0019         when="@5.5.0:5.7.1",
0020     )