python312Packages.kde-material-you-colors: init at 1.9.3

This commit is contained in:
Sigmanificient 2024-07-21 08:20:22 +02:00
parent 35ed1f1d35
commit c74138d216
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
dbus-python,
numpy,
pillow,
materialyoucolor,
}:
buildPythonPackage rec {
pname = "kde-material-you-colors";
version = "1.9.3";
pyproject = true;
src = fetchFromGitHub {
owner = "luisbocanegra";
repo = "kde-material-you-colors";
rev = "refs/tags/v${version}";
hash = "sha256-hew+aWbfWmqTsxsNx/0Ow0WZAVl0e6OyzDxcKm+nlzQ=";
};
build-system = [ setuptools ];
dependencies = [
dbus-python
numpy
pillow
materialyoucolor
];
pythonImportsCheck = [ "kde_material_you_colors" ];
doCheck = false; # no unittests, and would require KDE desktop environment
meta = {
homepage = "https://store.kde.org/p/2136963";
description = "Automatic color scheme generator from your wallpaper for KDE Plasma powered by Material You";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ sigmanificient ];
mainProgram = "kde-material-you-colors";
};
}

View File

@ -6510,6 +6510,8 @@ self: super: with self; {
kconfiglib = callPackage ../development/python-modules/kconfiglib { };
kde-material-you-colors = callPackage ../development/python-modules/kde-material-you-colors { };
keba-kecontact = callPackage ../development/python-modules/keba-kecontact { };
keep = callPackage ../development/python-modules/keep { };