summary refs log tree commit diff
path: root/pkgs/development/python-modules/catppuccin/default.nix
blob: 5a53233fff8777233a58d2e1b451f68718cc96d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
  };
}