diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 23:19:41 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:16 +0200 |
commit | fe780b55b43f5427ae8896e4810404c73a3d1c93 (patch) | |
tree | fa589987a133a15bde1ddfb70c42e0e156eb90bc /gnu/packages | |
parent | d4c62ff301fd6f7df884a382939f71ceacd6a4ed (diff) | |
download | guix-fe780b55b43f5427ae8896e4810404c73a3d1c93.tar.gz guix-fe780b55b43f5427ae8896e4810404c73a3d1c93.zip |
gnu: Add python-awkward-cpp.
* gnu/packages/python-xyz.scm (python-awkward-cpp): New variable.
Change-Id: I68f7e314aa6b575eb7135aa5308c327d5f6bf3ea
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b63d193dbe..c550759628 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -342,6 +342,26 @@ range of notification services, such as Telegram, Discord, Slack, Amazon SNS, Gotify, etc.") (license license:bsd-2))) +(define-public python-awkward-cpp + (package + (name "python-awkward-cpp") + (version "32") + (source + (origin + (method url-fetch) + (uri (pypi-uri "awkward-cpp" version)) + (sha256 + (base32 "1w11fjkwrian3vll7jhnisl1b6m6rk2rqx0n9d1hzyq6cbw5m35d")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-importlib-resources python-numpy)) + (native-inputs + (list cmake pybind11 python-pytest python-scikit-build-core)) + (home-page "https://github.com/scikit-hep/awkward-1.0") + (synopsis "CPU kernels and compiled extensions for Awkward Array") + (description "Awkward CPP provides precompiled routines for the awkward +package. It is not useful on its own, only as a dependency for awkward.") + (license license:bsd-3))) + (define-public python-xmldiff (package (name "python-xmldiff") |