Commit 6c41cbcd authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.rich-click: format with nixfmt

parent 2c423560
Loading
Loading
Loading
Loading
+12 −15
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, click
, fetchFromGitHub
, pythonOlder
, rich
, setuptools
, typer
, typing-extensions
{
  lib,
  buildPythonPackage,
  click,
  fetchFromGitHub,
  pythonOlder,
  rich,
  setuptools,
  typer,
  typing-extensions,
}:

buildPythonPackage rec {
@@ -23,9 +24,7 @@ buildPythonPackage rec {
    hash = "sha256-jrtGq+iOGpSm/aQM7aaY9mmH2j7IfncEN2EtgT3rG3k=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    click
@@ -36,9 +35,7 @@ buildPythonPackage rec {
  # Module has no test
  doCheck = false;

  pythonImportsCheck = [
    "rich_click"
  ];
  pythonImportsCheck = [ "rich_click" ];

  meta = with lib; {
    description = "Module to format click help output nicely with rich";