baf617aae7
https://github.com/datavaluepeople/kotsu/blob/v0.4.0/CHANGELOG.md This commit was automatically generated using update-python-libraries.
46 lines
936 B
Nix
46 lines
936 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pandas,
|
|
typing-extensions,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
pytest-mock,
|
|
scikit-learn,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "kotsu";
|
|
version = "0.4.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "datavaluepeople";
|
|
repo = "kotsu";
|
|
tag = "v${version}";
|
|
hash = "sha256-7bRrHowRKq3xiBiAkfS4ZL9PXHIUmZc99q9pHex9BLg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pandas
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
pytest-mock
|
|
scikit-learn
|
|
];
|
|
pythonImportsCheck = [ "kotsu" ];
|
|
|
|
meta = {
|
|
description = "Lightweight framework for structured and repeatable model validation";
|
|
homepage = "https://github.com/datavaluepeople/kotsu";
|
|
changelog = "https://github.com/datavaluepeople/kotsu/blob/${src.tag}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|