1{ lib
2, buildPythonPackage
3, fetchPypi
4, netifaces
5, isPy27
6}:
7
8buildPythonPackage rec {
9 pname = "aiozeroconf";
10 version = "0.1.8";
11 disabled = isPy27;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "074plydm7sd113p3k0siihwwz62d3r42q3g83vqaffp569msknqh";
16 };
17
18 propagatedBuildInputs = [ netifaces ];
19
20 meta = with lib; {
21 description = "A pure python implementation of multicast DNS service discovery";
22 homepage = "https://github.com/jstasiak/python-zeroconf";
23 license = licenses.lgpl21;
24 maintainers = with maintainers; [ obadz ];
25 };
26}