python3Packages.baycomp: init at 1.0.2
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
parent
27c6502cb9
commit
c7e99a323b
35
pkgs/development/python-modules/baycomp/default.nix
Normal file
35
pkgs/development/python-modules/baycomp/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, numpy
|
||||
, scipy
|
||||
, scikit-learn
|
||||
, matplotlib
|
||||
, unittestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "baycomp";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-xDRywWvXzfSITdTHPdMH5KPacJf+Scg81eiNdRQpI7A=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
numpy
|
||||
scipy
|
||||
matplotlib
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ unittestCheckHook ];
|
||||
pythonImportsCheck = [ "baycomp" ];
|
||||
|
||||
meta = {
|
||||
description = "A library for Bayesian comparison of classifiers";
|
||||
homepage = "https://github.com/janezd/baycomp";
|
||||
license = [ lib.licenses.mit ];
|
||||
maintainers = [ lib.maintainers.lucasew ];
|
||||
};
|
||||
}
|
@ -1271,6 +1271,8 @@ self: super: with self; {
|
||||
|
||||
batinfo = callPackage ../development/python-modules/batinfo { };
|
||||
|
||||
baycomp = callPackage ../development/python-modules/baycomp { };
|
||||
|
||||
bayesian-optimization = callPackage ../development/python-modules/bayesian-optimization { };
|
||||
|
||||
bayespy = callPackage ../development/python-modules/bayespy { };
|
||||
|
Loading…
Reference in New Issue
Block a user