Unverified Commit 19f68bd6 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

python3Packages.pylette: init at 4.0.0 (#373544)

parents 6cfe7392 8afffefd
Loading
Loading
Loading
Loading
+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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };