python3Packages.zeroconf: 0.28.8 -> 0.29.0

This commit is contained in:
Fabian Affolter 2021-03-26 21:39:55 +01:00
parent d6a67759e7
commit 0222121978

View File

@ -3,27 +3,26 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, ifaddr , ifaddr
, typing
, isPy27
, pythonOlder , pythonOlder
, pytestCheckHook , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "zeroconf"; pname = "zeroconf";
version = "0.28.8"; version = "0.29.0";
disabled = isPy27; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0narq8haa3b375vfblbyil77n8bw0wxqnanl91pl0wwwm884mqjb"; sha256 = "sha256-eu+7ZYtFKx/X5REkNk+TjG9eQtbqiT+iVXvqjAbFQK8=";
}; };
propagatedBuildInputs = [ ifaddr ] propagatedBuildInputs = [ ifaddr ];
++ lib.optionals (pythonOlder "3.5") [ typing ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "zeroconf/test.py" ]; pytestFlagsArray = [ "zeroconf/test.py" ];
disabledTests = [ disabledTests = [
# disable tests that expect some sort of networking in the build container # disable tests that expect some sort of networking in the build container
"test_launch_and_close" "test_launch_and_close"
@ -33,6 +32,7 @@ buildPythonPackage rec {
] ++ lib.optionals stdenv.isDarwin [ ] ++ lib.optionals stdenv.isDarwin [
"test_lots_of_names" "test_lots_of_names"
]; ];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "zeroconf" ]; pythonImportsCheck = [ "zeroconf" ];
@ -40,7 +40,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python implementation of multicast DNS service discovery"; description = "Python implementation of multicast DNS service discovery";
homepage = "https://github.com/jstasiak/python-zeroconf"; homepage = "https://github.com/jstasiak/python-zeroconf";
license = licenses.lgpl21; license = licenses.lgpl21Only;
maintainers = with maintainers; [ abbradar ]; maintainers = with maintainers; [ abbradar ];
}; };
} }