python3Packages.pylette: init at 4.0.0

This commit is contained in:
DataHearth
2025-03-20 15:11:38 +01:00
parent e32e29f524
commit 8afffefda8
2 changed files with 70 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 { };