depot/third_party/nixpkgs/pkgs/development/python-modules/catppuccin/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

27 lines
550 B
Nix

{ 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;
};
}