mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add clojure-test-generative.
* gnu/packages/clojure.scm (clojure-test-generative): New variable. Change-Id: I4798cca783b6e0c81243a96224002de65839068a Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a179385712
commit
e7b7fa6390
1 changed files with 25 additions and 0 deletions
|
|
@ -1210,3 +1210,28 @@ This is only about namespace dependencies within a single project. It has
|
|||
nothing to do with Leiningen, Maven, JAR files, or repositories.")
|
||||
(home-page "https://github.com/clojure/tools.namespace")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public clojure-test-generative
|
||||
(package
|
||||
(name "clojure-test-generative")
|
||||
(version "1.1.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/clojure/test.generative")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0lb72cr4s6rgpg18v3jr67ps6wx4p7j7mfzwnfgmm0v8rldlcycf"))))
|
||||
(build-system clojure-build-system)
|
||||
(arguments '(#:source-dirs '("src/main/clojure")
|
||||
#:test-dirs '("src/examples/clojure")
|
||||
#:doc-dirs '()))
|
||||
(propagated-inputs (list clojure-tools-namespace
|
||||
clojure-data-generators))
|
||||
(synopsis "Generative test runner")
|
||||
(description
|
||||
"This package defines generators functions and property based testing macros.")
|
||||
(home-page "https://github.com/clojure/test.generative")
|
||||
(license license:epl1.0)))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue