python313Packages.niaaml: relax typer (#446752)

Changed files
+4 -6
pkgs
development
python-modules
niaaml
+4 -6
pkgs/development/python-modules/niaaml/default.nix
···
pandas,
poetry-core,
pytestCheckHook,
-
pythonOlder,
scikit-learn,
toml-adapt,
typer,
···
pname = "niaaml";
version = "2.1.2";
pyproject = true;
-
-
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "firefly-cpp";
···
pythonRelaxDeps = [
"numpy"
"pandas"
+
"typer"
];
-
nativeBuildInputs = [
+
build-system = [
poetry-core
toml-adapt
];
-
propagatedBuildInputs = [
+
dependencies = [
loguru
niapy
numpy
···
meta = with lib; {
description = "Python automated machine learning framework";
homepage = "https://github.com/firefly-cpp/NiaAML";
-
changelog = "https://github.com/firefly-cpp/NiaAML/releases/tag/${version}";
+
changelog = "https://github.com/firefly-cpp/NiaAML/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ firefly-cpp ];
};