python312Packages.plugwise: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-20 11:09:20 +02:00
parent 6d6ef74001
commit 7423442c16

View File

@ -1,22 +1,23 @@
{ lib {
, aiohttp lib,
, async-timeout aiohttp,
, buildPythonPackage async-timeout,
, crcmod buildPythonPackage,
, defusedxml crcmod,
, fetchFromGitHub defusedxml,
, freezegun fetchFromGitHub,
, jsonpickle freezegun,
, munch jsonpickle,
, pyserial munch,
, pytest-aiohttp pyserial,
, pytest-asyncio pytest-aiohttp,
, pytestCheckHook pytest-asyncio,
, python-dateutil pytestCheckHook,
, pythonOlder python-dateutil,
, semver pythonOlder,
, setuptools semver,
, wheel setuptools,
wheel,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -64,9 +65,7 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "plugwise" ];
"plugwise"
];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;