Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / baycomp / default.nix
blob6ed381851535d744a328aad6e6beef9f8ca97d91
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , scipy
6 , scikit-learn
7 , matplotlib
8 , unittestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "baycomp";
13   version = "1.0.3";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-MrJa17FtWyUd259hEKMtezlTuYcJbaHSXvJ3k10l2uw=";
19   };
21   propagatedBuildInputs = [
22     numpy
23     scipy
24     matplotlib
25   ];
27   nativeCheckInputs = [ unittestCheckHook ];
28   pythonImportsCheck = [ "baycomp" ];
30   meta = {
31     description = "A library for Bayesian comparison of classifiers";
32     homepage = "https://github.com/janezd/baycomp";
33     license = [ lib.licenses.mit ];
34     maintainers = [ lib.maintainers.lucasew ];
35   };