gnu: Add emacs-el-mock.

* gnu/packages/emacs.scm (emacs-el-mock): New variable.
This commit is contained in:
Ricardo Wurmus 2016-07-12 20:27:47 +02:00
parent a228579883
commit 1c32830b7d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1283,6 +1283,28 @@ (define-public emacs-f
files and directories.")
(license license:gpl3+)))
(define-public emacs-el-mock
(package
(name "emacs-el-mock")
(version "1.25.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/rejeep/el-mock.el/"
"archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
(build-system emacs-build-system)
(home-page "http://github.com/rejeep/el-mock.el")
(synopsis "Tiny mock and stub framework in Emacs Lisp")
(description
"Emacs Lisp Mock is a library for mocking and stubbing using readable
syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
Expectations, but it can be used in other contexts.")
(license license:gpl3+)))
(define-public emacs-ob-ipython
(package
(name "emacs-ob-ipython")