python312Packages.ovoenergy: format with nixfmt
This commit is contained in:
parent
161c71f5b7
commit
75b43a467e
1 changed files with 13 additions and 18 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue