Commit 0e37b071 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.aiozeroconf: format with nixfmt

parent 24cd8745
Loading
Loading
Loading
Loading
+10 −15
Original line number Diff line number Diff line
{ 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";