python312Packages.aiozeroconf: format with nixfmt
This commit is contained in:
parent
24cd8745c6
commit
0e37b07138
1 changed files with 10 additions and 15 deletions
|
@ -1,9 +1,10 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, netifaces
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
netifaces,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -18,17 +19,11 @@ buildPythonPackage rec {
|
|||
hash = "sha256-ENupazLlOqfwHugNLEgeTZjPOYxRgznuCKHpU5unlxw=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
netifaces
|
||||
];
|
||||
dependencies = [ netifaces ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aiozeroconf"
|
||||
];
|
||||
pythonImportsCheck = [ "aiozeroconf" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Implementation of multicast DNS service discovery";
|
||||
|
|
Loading…
Reference in a new issue