blob: 4ed9b51a2879a9e8e801927f386ac00354a85c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pandas,
typing-extensions,
pytestCheckHook,
pytest-cov-stub,
pytest-mock,
scikit-learn,
}:
buildPythonPackage rec {
pname = "kotsu";
version = "0.3.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "datavaluepeople";
repo = "kotsu";
rev = "v${version}";
hash = "sha256-V5OkgiLUTRNbNt6m94+aYUZd9Nw+/60LfhrqqdFhiUw=";
};
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.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|