b313b3f1c3
Running 1 test suites... Test suite tests: RUNNING... Tests for all distributions: Tests for: BetaDistribution: C.D.F. sanity: [OK, passed 100 tests] CDF limit at +tests: <stdout>: commitBuffer: invalid argument (invalid character) Test suite tests: FAIL Test suite logged to: dist/test/statistics-0.10.2.0-tests.log
28 lines
918 B
Nix
28 lines
918 B
Nix
{ cabal, deepseq, erf, HUnit, ieee754, mathFunctions, monadPar
|
|
, mwcRandom, primitive, QuickCheck, testFramework
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
|
, vectorAlgorithms
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "statistics";
|
|
version = "0.10.2.0";
|
|
sha256 = "1sv0fhbi52maq9c4ni109m0051a1nndi3ncz9v29mkxqzyckrp9x";
|
|
buildDepends = [
|
|
deepseq erf mathFunctions monadPar mwcRandom primitive vector
|
|
vectorAlgorithms
|
|
];
|
|
testDepends = [
|
|
erf HUnit ieee754 mathFunctions primitive QuickCheck testFramework
|
|
testFrameworkHunit testFrameworkQuickcheck2 vector vectorAlgorithms
|
|
];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "https://github.com/bos/statistics";
|
|
description = "A library of statistical types, data, and functions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|