Commit 46b289ab authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.griffe: format with nixfmt

parent e5af57fc
Loading
Loading
Loading
Loading
+15 −22
Original line number Diff line number Diff line
{ lib
, aiofiles
, buildPythonPackage
, colorama
, fetchFromGitHub
, git
, jsonschema
, pdm-backend
, pytestCheckHook
, pythonOlder
{
  lib,
  aiofiles,
  buildPythonPackage,
  colorama,
  fetchFromGitHub,
  git,
  jsonschema,
  pdm-backend,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
@@ -24,13 +25,9 @@ buildPythonPackage rec {
    hash = "sha256-W6aOhz8UxJUc2kNRc4JaCqFgIOXsY8ctyQ3xZ+YaD9k=";
  };

  build-system = [
    pdm-backend
  ];
  build-system = [ pdm-backend ];

  dependencies = [
    colorama
  ];
  dependencies = [ colorama ];

  nativeCheckInputs = [
    git
@@ -39,14 +36,10 @@ buildPythonPackage rec {
  ];

  passthru.optional-dependencies = {
    async = [
      aiofiles
    ];
    async = [ aiofiles ];
  };

  pythonImportsCheck = [
    "griffe"
  ];
  pythonImportsCheck = [ "griffe" ];

  meta = with lib; {
    description = "Signatures for entire Python programs";