me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-mocking.

* gnu/packages/julia-xyz.scm (julia-mocking): New variable.
master
Efraim Flashner 2021-05-31 11:35:34 +03:00
parent 73b6f78c98
commit f273a4b799
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -1266,6 +1266,28 @@ resolving them into absolute units.")
with @code{missing} values in Julia.")
(license license:expat)))
(define-public julia-mocking
(package
(name "julia-mocking")
(version "0.7.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/invenia/Mocking.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "10jz716v6i3gpd403rmcrip6cncjl9lqr12cdl321x1994a5g8ck"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-exprtools" ,julia-exprtools)))
(home-page "https://github.com/invenia/Mocking.jl")
(synopsis "Overload Julia function calls")
(description "The purpose of this package is to allow Julia function calls
to be temporarily overloaded for the purpose of testing.")
(license license:expat)))
(define-public julia-msgpack
(package
(name "julia-msgpack")