2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-05-04 20:06:43 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, netifaces
|
|
|
|
, isPy27
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiozeroconf";
|
|
|
|
version = "0.1.8";
|
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "074plydm7sd113p3k0siihwwz62d3r42q3g83vqaffp569msknqh";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ netifaces ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-04 20:06:43 +01:00
|
|
|
description = "A pure python implementation of multicast DNS service discovery";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jstasiak/python-zeroconf";
|
2019-05-04 20:06:43 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ obadz ];
|
|
|
|
};
|
|
|
|
}
|