gnu: Add perl-statistics-basic.

* gnu/packages/perl.scm (perl-statistics-basic): New variable.
This commit is contained in:
Roel Janssen 2018-04-04 20:53:48 +02:00
parent 25c4743156
commit 723225c32c
No known key found for this signature in database
GPG Key ID: C3EC1DCA843072E1
1 changed files with 21 additions and 0 deletions

View File

@ -7296,6 +7296,27 @@ straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
other OO languages like Python, Ruby, Java and Perl 6.") other OO languages like Python, Ruby, Java and Perl 6.")
(license (package-license perl)))) (license (package-license perl))))
(define-public perl-statistics-basic
(package
(name "perl-statistics-basic")
(version "1.6611")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
version ".tar.gz"))
(sha256
(base32
"1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
(build-system perl-build-system)
(inputs
`(("perl-number-format" ,perl-number-format)))
(home-page "http://search.cpan.org/dist/Statistics-Basic/")
(synopsis "Collection of very basic statistics modules")
(description "This package provides basic statistics functions like
@code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
(license lgpl2.0)))
(define-public perl-stream-buffered (define-public perl-stream-buffered
(package (package
(name "perl-stream-buffered") (name "perl-stream-buffered")