Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / baycomp / default.nix
blob0d4f59745f007dce4e47301bf7fc03356580de50
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";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-MrJa17FtWyUd259hEKMtezlTuYcJbaHSXvJ3k10l2uw=";
18   };
20   propagatedBuildInputs = [
21     numpy
22     scipy
23     matplotlib
24   ];
26   nativeCheckInputs = [ unittestCheckHook ];
27   pythonImportsCheck = [ "baycomp" ];
29   meta = {
30     description = "A library for Bayesian comparison of classifiers";
31     homepage = "https://github.com/janezd/baycomp";
32     license = [ lib.licenses.mit ];
33     maintainers = [ lib.maintainers.lucasew ];
34   };