2018-10-25 16:48:43 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, ifaddr
|
|
|
|
, typing
|
|
|
|
, isPy27
|
|
|
|
, pythonOlder
|
|
|
|
, python
|
|
|
|
}:
|
2017-07-15 08:41:02 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zeroconf";
|
2020-03-18 17:28:06 +01:00
|
|
|
version = "0.24.5";
|
2018-10-25 16:48:43 +02:00
|
|
|
disabled = isPy27;
|
2017-07-15 08:41:02 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-18 17:28:06 +01:00
|
|
|
sha256 = "0jpgd0rk91si93857mjrizan5gc42kj1q4fi4160qgk68la88fl9";
|
2017-07-15 08:41:02 +02:00
|
|
|
};
|
|
|
|
|
2018-10-25 16:48:43 +02:00
|
|
|
propagatedBuildInputs = [ ifaddr ]
|
|
|
|
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
|
|
|
|
|
|
|
|
# tests not included with pypi release
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} test_zeroconf.py
|
|
|
|
'';
|
2017-07-15 08:41:02 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A pure python implementation of multicast DNS service discovery";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jstasiak/python-zeroconf";
|
2017-07-15 08:41:02 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|