nixpkgs/pkgs/development/python-modules/zeroconf/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, ifaddr
, pythonOlder
2020-10-04 03:05:06 +00:00
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "zeroconf";
version = "0.29.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-eu+7ZYtFKx/X5REkNk+TjG9eQtbqiT+iVXvqjAbFQK8=";
};
propagatedBuildInputs = [ ifaddr ];
2020-10-04 03:05:06 +00:00
checkInputs = [ pytestCheckHook ];
2020-10-04 03:05:06 +00:00
pytestFlagsArray = [ "zeroconf/test.py" ];
2020-10-04 03:05:06 +00:00
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"
2020-10-04 03:05:06 +00:00
];
__darwinAllowLocalNetworking = true;
2020-10-04 03:05:06 +00:00
pythonImportsCheck = [ "zeroconf" ];
2020-10-04 03:05:06 +00:00
meta = with lib; {
description = "Python implementation of multicast DNS service discovery";
homepage = "https://github.com/jstasiak/python-zeroconf";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ abbradar ];
};
}