python312Packages.glances-api: use nixfmt

This commit is contained in:
Fabian Affolter 2024-04-04 13:40:20 +02:00
parent 27c26ee4c3
commit f0bec38419

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, httpx
, poetry-core
, pytest-asyncio
, pytest-httpx
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
httpx,
poetry-core,
pytest-asyncio,
pytest-httpx,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -23,13 +24,9 @@ buildPythonPackage rec {
hash = "sha256-k/F4q1+bO6p/PW8iEiiCX6yXKbS8SHXVR8mEGezOrRE=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
httpx
];
dependencies = [ httpx ];
nativeCheckInputs = [
pytest-asyncio
@ -37,9 +34,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"glances_api"
];
pythonImportsCheck = [ "glances_api" ];
meta = with lib; {
description = "Python API for interacting with Glances";