python312Packages.griffe: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-16 09:07:13 +02:00
parent e5af57fcb1
commit 46b289ab1e
1 changed files with 15 additions and 22 deletions

View File

@ -1,13 +1,14 @@
{ 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";