python312Packages.myuplink: use nixfmt

This commit is contained in:
Fabian Affolter 2024-04-04 09:50:40 +02:00
parent 58bf01775e
commit f9a6c92dfe

View File

@ -1,9 +1,10 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -25,17 +26,11 @@ buildPythonPackage rec {
--replace-fail "%%VERSION_NO%%" "${version}"
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
];
dependencies = [ aiohttp ];
pythonImportsCheck = [
"myuplink"
];
pythonImportsCheck = [ "myuplink" ];
meta = with lib; {
description = "Module to interact with the myUplink API";