f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
niapy,
|
|
numpy,
|
|
pandas,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
scikit-learn,
|
|
toml-adapt,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "niaclass";
|
|
version = "0.2.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firefly-cpp";
|
|
repo = "NiaClass";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-C3EF18lzheE+dXHJA6WJNFECAH4HfPiCDo7QxtHvOLI=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "pandas" ];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
toml-adapt
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
niapy
|
|
numpy
|
|
pandas
|
|
scikit-learn
|
|
];
|
|
|
|
# create scikit-learn dep version consistent
|
|
preBuild = ''
|
|
toml-adapt -path pyproject.toml -a change -dep scikit-learn -ver X
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "niaclass" ];
|
|
|
|
meta = with lib; {
|
|
description = "Framework for solving classification tasks using Nature-inspired algorithms";
|
|
homepage = "https://github.com/firefly-cpp/NiaClass";
|
|
changelog = "https://github.com/firefly-cpp/NiaClass/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ firefly-cpp ];
|
|
};
|
|
}
|