Files
nixpkgs/pkgs/development/python-modules/mindsdb-evaluator/default.nix
T
Martin Weinelt c2db790762 python3Packages.mindsdb-evaluator: 0.0.20 -> 0.0.21
https://github.com/mindsdb/mindsdb_evaluator/releases/tag/v0.0.21

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:32 +01:00

56 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
dataprep-ml,
numpy,
pandas,
scikit-learn,
type-infer,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mindsdb-evaluator";
version = "0.0.21";
pyproject = true;
src = fetchFromGitHub {
owner = "mindsdb";
repo = "mindsdb_evaluator";
tag = "v${version}";
hash = "sha256-eUdGtHLbI6T7HsUqkVkTp040pbq7qVzgaldQxPAzjTc=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [
"dataprep-ml"
"numpy"
"scikit-learn"
];
dependencies = [
dataprep-ml
numpy
pandas
scikit-learn
type-infer
];
pythonImportsCheck = [ "mindsdb_evaluator" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/mindsdb/mindsdb_evaluator/releases/tag/${src.tag}";
description = "Model evaluation for Machine Learning pipelines";
homepage = "https://github.com/mindsdb/mindsdb_evaluator";
license = lib.licenses.gpl3Only;
maintainers = [ ];
};
}