2018-10-25 15:48:43 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, ifaddr
|
|
|
|
, typing
|
|
|
|
, isPy27
|
|
|
|
, pythonOlder
|
|
|
|
, python
|
|
|
|
}:
|
2017-07-15 07:41:02 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zeroconf";
|
2020-05-10 02:42:23 +01:00
|
|
|
version = "0.26.0";
|
2018-10-25 15:48:43 +01:00
|
|
|
disabled = isPy27;
|
2017-07-15 07:41:02 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-10 02:42:23 +01:00
|
|
|
sha256 = "029wxa50dwf4hsi7w0d8wmywh125aaaa7l4g024z1cyi511iy5h1";
|
2017-07-15 07:41:02 +01:00
|
|
|
};
|
|
|
|
|
2018-10-25 15:48:43 +01: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 07:41:02 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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";
|
2017-07-15 07:41:02 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|