Advertisement
Guest User

Untitled

a guest
Jul 29th, 2019
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 2.73 KB | None | 0 0
  1. (use-modules (guix packages)
  2.              (guix download)
  3.              (guix build-system python)
  4.              (guix licenses)
  5.          (gnu packages python))
  6.  
  7. (define-public python-cachetools
  8.   (package
  9.     (name "python-cachetools")
  10.     (version "3.1.1")
  11.     (source
  12.       (origin
  13.         (method url-fetch)
  14.         (uri (pypi-uri "cachetools" version))
  15.         (sha256
  16.           (base32
  17.             "16m69l6n6y1r1y7cklm92rr7v69ldig2n3lbl3j323w5jz7d78lf"))))
  18.     (build-system python-build-system)
  19.     (home-page "https://github.com/tkem/cachetools")
  20.     (synopsis
  21.       "Extensible memoizing collections and decorators")
  22.     (description
  23.       "Extensible memoizing collections and decorators")
  24.     (license expat)))
  25.  
  26. (define-public python-uproot-methods
  27.   (package
  28.     (name "python-uproot-methods")
  29.     (version "0.7.0")
  30.     (source
  31.       (origin
  32.         (method url-fetch)
  33.         (uri (pypi-uri "uproot-methods" version))
  34.         (sha256
  35.           (base32
  36.             "0awxd4p8yr27k4iayc0phw99bxgw04dnd3lb372hj9wjvldm0hzr"))))
  37.     (build-system python-build-system)
  38.     (propagated-inputs
  39.       `(("python-awkward" ,python-awkward)
  40.         ("python-numpy" ,python-numpy)))
  41.     (home-page
  42.       "https://github.com/scikit-hep/uproot-methods")
  43.     (synopsis "Pythonic mix-ins for ROOT classes.")
  44.     (description
  45.       "Pythonic mix-ins for ROOT classes.")
  46.     (license #f)))
  47.  
  48. (define-public python-awkward
  49.   (package
  50.     (name "python-awkward")
  51.     (version "0.12.4")
  52.     (source
  53.       (origin
  54.         (method url-fetch)
  55.         (uri (pypi-uri "awkward" version))
  56.         (sha256
  57.           (base32
  58.             "19pnwwp0r1a709xb3b757nw1d75mvri1iq9zfzr8i027j6wi440k"))))
  59.     (build-system python-build-system)
  60.     (propagated-inputs
  61.       `(("python-numpy" ,python-numpy)))
  62.     (home-page
  63.       "https://github.com/scikit-hep/awkward-array")
  64.     (synopsis
  65.       "Manipulate arrays of complex data structures as easily as Numpy.")
  66.     (description
  67.       "Manipulate arrays of complex data structures as easily as Numpy.")
  68.     (license #f)))
  69.  
  70.  
  71. (package
  72.   (name "python-uproot")
  73.   (version "3.8.0")
  74.   (source
  75.     (origin
  76.       (method url-fetch)
  77.       (uri (pypi-uri "uproot" version))
  78.       (sha256
  79.         (base32
  80.           "06s0lym5md59pj8w89acnwk0i0hh92az187h4gz22mb849h308pw"))))
  81.   (build-system python-build-system)
  82.   (propagated-inputs
  83.     `(("python-awkward" ,python-awkward)
  84.       ("python-cachetools" ,python-cachetools)
  85.       ("python-numpy" ,python-numpy)
  86.       ("python-uproot-methods" ,python-uproot-methods)))
  87.   (home-page
  88.     "https://github.com/scikit-hep/uproot")
  89.   (synopsis "ROOT I/O in pure Python and Numpy.")
  90.   (description
  91.     "ROOT I/O in pure Python and Numpy.")
  92.   (license #f))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement