mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python3Packages.catppuccin: init at 1.1.1
This commit is contained in:
parent
6e284c8889
commit
64c7c5df40
27
pkgs/development/python-modules/catppuccin/default.nix
Normal file
27
pkgs/development/python-modules/catppuccin/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user