mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 15:23:26 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
79 lines
1.7 KiB
Nix
79 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, ifaddr
|
|
, poetry-core
|
|
, pytest-asyncio
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zeroconf";
|
|
version = "0.47.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jstasiak";
|
|
repo = "python-zeroconf";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-vY4n0QIEzumtUayRbGGqycR3z7kpbOH4XKxSMcnTVrA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
ifaddr
|
|
];
|
|
|
|
# OSError: [Errno 48] Address already in use
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
sed -i '/addopts/d' pyproject.toml
|
|
'';
|
|
|
|
disabledTests = [
|
|
# tests that require network interaction
|
|
"test_close_multiple_times"
|
|
"test_launch_and_close"
|
|
"test_launch_and_close_context_manager"
|
|
"test_launch_and_close_v4_v6"
|
|
"test_launch_and_close_v6_only"
|
|
"test_integration_with_listener_ipv6"
|
|
# Starting with 0.39.0: AssertionError: assert [('add', '_ht..._tcp.local.')]
|
|
"test_service_browser_expire_callbacks"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"test_lots_of_names"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
pythonImportsCheck = [
|
|
"zeroconf"
|
|
"zeroconf.asyncio"
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/python-zeroconf/python-zeroconf/releases/tag/${version}";
|
|
description = "Python implementation of multicast DNS service discovery";
|
|
homepage = "https://github.com/jstasiak/python-zeroconf";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|