gnu: Add julia-pooledarrays.

* gnu/packages/julia-xyz.scm (julia-pooledarrays): New variable.
This commit is contained in:
Efraim Flashner 2021-05-31 12:45:30 +03:00
parent 4541cda7d7
commit 9f92c8b51f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1597,6 +1597,28 @@ (define-public julia-plotutils
plotting components.")
(license license:expat)))
(define-public julia-pooledarrays
(package
(name "julia-pooledarrays")
(version "1.2.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaData/PooledArrays.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ihvhzkxdw4qf0i6sbrickhdcwkmlin9zyixxn9xvgzm8nc0iwqy"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-dataapi" ,julia-dataapi)))
(home-page "https://github.com/JuliaData/PooledArrays.jl")
(synopsis "Pooled representation of arrays in Julia")
(description "This package provides a pooled representation of arrays for
purposes of compression when there are few unique elements.")
(license license:expat)))
(define-public julia-quadmath
(package
(name "julia-quadmath")