python312Packages.soco: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-15 08:23:40 +02:00
parent a589919cb3
commit 4a4d98d961
1 changed files with 18 additions and 21 deletions

View File

@ -1,18 +1,19 @@
{ lib
, appdirs
, buildPythonPackage
, fetchFromGitHub
, graphviz
, ifaddr
, lxml
, mock
, nix-update-script
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, setuptools
, xmltodict
{
lib,
appdirs,
buildPythonPackage,
fetchFromGitHub,
graphviz,
ifaddr,
lxml,
mock,
nix-update-script,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
setuptools,
xmltodict,
}:
buildPythonPackage rec {
@ -29,9 +30,7 @@ buildPythonPackage rec {
hash = "sha256-QAF3f1JMGFFsgdZzoyo+RwKKMaLG+hy+lvZwCzceU/g=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
appdirs
@ -48,9 +47,7 @@ buildPythonPackage rec {
requests-mock
];
pythonImportsCheck = [
"soco"
];
pythonImportsCheck = [ "soco" ];
passthru.updateScript = nix-update-script { };