catppuccin-catwalk: init at 0.4.0

This commit is contained in:
Ryan Cao 2023-07-26 11:23:21 +08:00
parent 1ccdb33cf4
commit 1a5e7012a0
No known key found for this signature in database
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, fetchPypi
, python3
,
}:
python3.pkgs.buildPythonApplication rec {
pname = "catppuccin-catwalk";
version = "0.4.0";
format = "pyproject";
src = fetchPypi {
inherit version;
pname = "catppuccin_catwalk";
hash = "sha256-5TAw5H3soxe9vLhfj1qs8uMr4ybrHlCj4zdsMzvPo6s=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
pillow
];
pythonImports = [
"catwalk"
];
meta = with lib; {
homepage = "https://github.com/catppuccin/toolbox";
description = "A CLI for Catppuccin that takes in four showcase images and displays them all at once";
license = licenses.mit;
maintainers = with maintainers; [ ryanccn ];
};
}

View File

@ -411,6 +411,8 @@ with pkgs;
catatonit = callPackage ../applications/virtualization/catatonit { };
catppuccin-catwalk = callPackage ../development/tools/misc/catppuccin-catwalk { };
catppuccin-gtk = callPackage ../data/themes/catppuccin-gtk { };
catppuccin-kde = callPackage ../data/themes/catppuccin-kde { };