python3Packages.catppuccin: init at 1.1.1

This commit is contained in:
Mihai Fufezan 2022-12-09 18:44:04 +02:00
parent 6e284c8889
commit 64c7c5df40
No known key found for this signature in database
GPG Key ID: 5899325F2F120900
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, pygments
}:
buildPythonPackage rec {
pname = "catppuccin";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-mHNuV3yIuFL2cixDOr+//+/b9iD2fN82cfLzZkegxKc=";
};
propagatedBuildInputs = [ pygments ];
pythonImportsCheck = [ "catppuccin" ];
meta = with lib; {
description = "Soothing pastel theme for Python";
homepage = "https://github.com/catppuccin/python";
maintainers = with maintainers; [ fufexan ];
license = licenses.mit;
};
}

View File

@ -1550,6 +1550,8 @@ self: super: with self; {
catboost = callPackage ../development/python-modules/catboost { };
catppuccin = callPackage ../development/python-modules/catppuccin { };
cattrs = callPackage ../development/python-modules/cattrs { };
cbeams = callPackage ../misc/cbeams { };