9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
|
|
, matplotlib
|
|
, numpy
|
|
, scipy
|
|
, tqdm
|
|
, scikit-learn
|
|
, scikit-image
|
|
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lime";
|
|
version = "0.2.0.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-dpYOTwVf61Pom1AiODuvyHtj8lusYmWYSwozPRpX94E=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
matplotlib
|
|
numpy
|
|
scipy
|
|
tqdm
|
|
scikit-learn
|
|
scikit-image
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# touches network
|
|
"lime/tests/test_lime_text.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"lime.exceptions"
|
|
"lime.explanation"
|
|
"lime.lime_base"
|
|
"lime.lime_image"
|
|
"lime.lime_text"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Local Interpretable Model-Agnostic Explanations for machine learning classifiers";
|
|
homepage = "https://github.com/marcotcr/lime";
|
|
changelog = "https://github.com/marcotcr/lime/releases/tag/${version}";
|
|
license = licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ khaser ];
|
|
};
|
|
}
|