Loading pkgs/development/python-modules/pylette/default.nix 0 → 100644 +68 −0 Original line number Diff line number Diff line { 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/pylette/default.nix 0 → 100644 +68 −0 Original line number Diff line number Diff line { 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading