me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-biosymbols.

* gnu/packages/julia-xyz.scm (julia-biosymbols): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
zimoun 2022-01-04 23:47:52 +01:00 committed by Efraim Flashner
parent 4486b111d3
commit 46472ae545
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 31 additions and 0 deletions

View File

@ -387,6 +387,37 @@ many of the other BioJulia packages. This package defines IO, exceptions, and
other types or methods used by other BioJulia packages.")
(license license:expat))))
(define-public julia-biosymbols
(package
(name "julia-biosymbols")
;; Older release for compatibility with julia-biosequences.
(version "4.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/BioJulia/BioSymbols.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1222rwdndi777lai8a6dwrh35i5rgmj75kcrhn8si72sxgz0syjm"))))
(build-system julia-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'adjust-tests
(lambda _
(substitute* "test/runtests.jl"
(("\\@testset \\\"Range.*" all)
(string-append all " return\n"))))))))
(propagated-inputs
(list julia-automa))
(home-page "https://github.com/BioJulia/BioSymbols.jl")
(synopsis "Primitive types for nucleic acids and amino acids")
(description "This package defines the primitive types for nucleic acids
and amino acids that are used ny otherBioJulia packages.")
(license license:expat)))
(define-public julia-blockarrays
(package
(name "julia-blockarrays")