python312Packages.ovoenergy: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-22 08:41:31 +02:00
parent 161c71f5b7
commit 75b43a467e

View File

@ -1,12 +1,13 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, click buildPythonPackage,
, fetchFromGitHub click,
, incremental fetchFromGitHub,
, pythonOlder incremental,
, setuptools pythonOlder,
, typer setuptools,
typer,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -23,13 +24,9 @@ buildPythonPackage rec {
hash = "sha256-ZcTSf7UejEUqQo0qEXP3fWjZYRx0a3ZBNVkwS2dL3Yk="; hash = "sha256-ZcTSf7UejEUqQo0qEXP3fWjZYRx0a3ZBNVkwS2dL3Yk=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
nativeBuildInputs = [ nativeBuildInputs = [ incremental ];
incremental
];
dependencies = [ dependencies = [
aiohttp aiohttp
@ -40,9 +37,7 @@ buildPythonPackage rec {
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "ovoenergy" ];
"ovoenergy"
];
meta = with lib; { meta = with lib; {
description = "Python client for getting data from OVO's API"; description = "Python client for getting data from OVO's API";