diff --git a/pkgs/development/python-modules/pylette/default.nix b/pkgs/development/python-modules/pylette/default.nix new file mode 100644 index 000000000000..443295029ca0 --- /dev/null +++ b/pkgs/development/python-modules/pylette/default.nix @@ -0,0 +1,68 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + poetry-core, + scikit-learn, + typer, + requests, + pillow, + numpy, + pytestCheckHook, + opencv-python, + requests-mock, +}: +buildPythonPackage rec { + pname = "pylette"; + version = "4.0.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "qTipTip"; + repo = "Pylette"; + tag = version; + hash = "sha256-i8+QQpYoRfgoV9Nm/FvXSJV+TEvmaaPsPIeG+PU838Q="; + }; + + build-system = [ + poetry-core + ]; + + dependencies = [ + scikit-learn + pillow + requests + typer + numpy + ]; + + pythonImportsCheck = [ + "Pylette" + ]; + + pythonRelaxDeps = [ + "numpy" + "Pillow" + "typer" + ]; + + disabledTests = [ + # hangs forever + "test_color_extraction_deterministic_kmeans" + ]; + + nativeCheckInputs = [ + opencv-python + pytestCheckHook + requests-mock + typer + ]; + + meta = { + changelog = "https://github.com/qTipTip/Pylette/releases/tag/${version}"; + description = "Python library for extracting color palettes from images"; + homepage = "https://qtiptip.github.io/Pylette/"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DataHearth ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2a96787ebe0e..91c1643f8a60 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12357,6 +12357,8 @@ self: super: with self; { pyleri = callPackage ../development/python-modules/pyleri { }; + pylette = callPackage ../development/python-modules/pylette { }; + pylev = callPackage ../development/python-modules/pylev { }; pylgnetcast = callPackage ../development/python-modules/pylgnetcast { };