47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, ifaddr
|
|
, typing
|
|
, isPy27
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zeroconf";
|
|
version = "0.28.8";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0narq8haa3b375vfblbyil77n8bw0wxqnanl91pl0wwwm884mqjb";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ifaddr ]
|
|
++ lib.optionals (pythonOlder "3.5") [ typing ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
pytestFlagsArray = [ "zeroconf/test.py" ];
|
|
disabledTests = [
|
|
# disable tests that expect some sort of networking in the build container
|
|
"test_launch_and_close"
|
|
"test_launch_and_close_v4_v6"
|
|
"test_launch_and_close_v6_only"
|
|
"test_integration_with_listener_ipv6"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"test_lots_of_names"
|
|
];
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
pythonImportsCheck = [ "zeroconf" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python implementation of multicast DNS service discovery";
|
|
homepage = "https://github.com/jstasiak/python-zeroconf";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|