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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
# dependencies
niapy,
nltk,
numpy,
pandas,
plotly,
scikit-learn,
pythonOlder,
tomli,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "niaarm";
# nixpkgs-update: no auto update
version = "0.13.4";
pyproject = true;
src = fetchFromGitHub {
owner = "firefly-cpp";
repo = "NiaARM";
tag = version;
hash = "sha256-524rJ5b9e0U1rqu1iCGMA3Tgnn9bO4biCC1FMoGNqms=";
};
pythonRelaxDeps = [
"numpy"
"plotly"
"scikit-learn"
];
build-system = [ poetry-core ];
dependencies = [
niapy
nltk
numpy
pandas
plotly
scikit-learn
]
++ lib.optionals (pythonOlder "3.11") [ tomli ];
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
# Prevents 'Fatal Python error: Aborted' on darwin during checkPhase
MPLBACKEND = "Agg";
};
disabledTests = [
# Test requires extra nltk data dependency
"test_text_mining"
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "niaarm" ];
meta = {
description = "Minimalistic framework for Numerical Association Rule Mining";
mainProgram = "niaarm";
homepage = "https://github.com/firefly-cpp/NiaARM";
changelog = "https://github.com/firefly-cpp/NiaARM/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ firefly-cpp ];
};
}
|