Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (use-modules (guix packages)
- (guix download)
- (guix build-system python)
- (guix licenses)
- (gnu packages python))
- (define-public python-cachetools
- (package
- (name "python-cachetools")
- (version "3.1.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "cachetools" version))
- (sha256
- (base32
- "16m69l6n6y1r1y7cklm92rr7v69ldig2n3lbl3j323w5jz7d78lf"))))
- (build-system python-build-system)
- (home-page "https://github.com/tkem/cachetools")
- (synopsis
- "Extensible memoizing collections and decorators")
- (description
- "Extensible memoizing collections and decorators")
- (license expat)))
- (define-public python-uproot-methods
- (package
- (name "python-uproot-methods")
- (version "0.7.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "uproot-methods" version))
- (sha256
- (base32
- "0awxd4p8yr27k4iayc0phw99bxgw04dnd3lb372hj9wjvldm0hzr"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-awkward" ,python-awkward)
- ("python-numpy" ,python-numpy)))
- (home-page
- "https://github.com/scikit-hep/uproot-methods")
- (synopsis "Pythonic mix-ins for ROOT classes.")
- (description
- "Pythonic mix-ins for ROOT classes.")
- (license #f)))
- (define-public python-awkward
- (package
- (name "python-awkward")
- (version "0.12.4")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "awkward" version))
- (sha256
- (base32
- "19pnwwp0r1a709xb3b757nw1d75mvri1iq9zfzr8i027j6wi440k"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-numpy" ,python-numpy)))
- (home-page
- "https://github.com/scikit-hep/awkward-array")
- (synopsis
- "Manipulate arrays of complex data structures as easily as Numpy.")
- (description
- "Manipulate arrays of complex data structures as easily as Numpy.")
- (license #f)))
- (package
- (name "python-uproot")
- (version "3.8.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "uproot" version))
- (sha256
- (base32
- "06s0lym5md59pj8w89acnwk0i0hh92az187h4gz22mb849h308pw"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-awkward" ,python-awkward)
- ("python-cachetools" ,python-cachetools)
- ("python-numpy" ,python-numpy)
- ("python-uproot-methods" ,python-uproot-methods)))
- (home-page
- "https://github.com/scikit-hep/uproot")
- (synopsis "ROOT I/O in pure Python and Numpy.")
- (description
- "ROOT I/O in pure Python and Numpy.")
- (license #f))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement