Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, python 5, pygments 6}: 7 8buildPythonPackage rec { 9 pname = "catppuccin"; 10 version = "1.1.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-mHNuV3yIuFL2cixDOr+//+/b9iD2fN82cfLzZkegxKc="; 15 }; 16 17 propagatedBuildInputs = [ pygments ]; 18 19 pythonImportsCheck = [ "catppuccin" ]; 20 21 meta = with lib; { 22 description = "Soothing pastel theme for Python"; 23 homepage = "https://github.com/catppuccin/python"; 24 maintainers = with maintainers; [ fufexan ]; 25 license = licenses.mit; 26 }; 27}