nixpkgs/pkgs/development/python-modules/zeroconf/default.nix
2020-08-16 19:31:20 +02:00

38 lines
811 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, ifaddr
, typing
, isPy27
, pythonOlder
, python
}:
buildPythonPackage rec {
pname = "zeroconf";
version = "0.28.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "881da2ed3d7c8e0ab59fb1cc8b02b53134351941c4d8d3f3553a96700f257a03";
};
propagatedBuildInputs = [ ifaddr ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
# tests not included with pypi release
doCheck = false;
checkPhase = ''
${python.interpreter} test_zeroconf.py
'';
meta = with stdenv.lib; {
description = "A pure python implementation of multicast DNS service discovery";
homepage = "https://github.com/jstasiak/python-zeroconf";
license = licenses.lgpl21;
maintainers = with maintainers; [ abbradar ];
};
}