python311Packages.openhomedevice: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-18 21:24:08 +02:00
parent 9355dad97f
commit 3156917d23

View File

@ -1,12 +1,13 @@
{ lib {
, aioresponses lib,
, async-upnp-client aioresponses,
, buildPythonPackage async-upnp-client,
, fetchFromGitHub buildPythonPackage,
, lxml fetchFromGitHub,
, pytestCheckHook lxml,
, pythonOlder pytestCheckHook,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -23,9 +24,7 @@ buildPythonPackage rec {
hash = "sha256-GGp7nKFH01m1KW6yMkKlAdd26bDi8JDWva6OQ0CWMIw="; hash = "sha256-GGp7nKFH01m1KW6yMkKlAdd26bDi8JDWva6OQ0CWMIw=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
async-upnp-client async-upnp-client
@ -37,13 +36,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "openhomedevice" ];
"openhomedevice"
];
pytestFlagsArray = [ pytestFlagsArray = [ "tests/*.py" ];
"tests/*.py"
];
meta = with lib; { meta = with lib; {
description = "Python module to access Linn Ds and Openhome devices"; description = "Python module to access Linn Ds and Openhome devices";