summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/async-upnp-client
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-19 23:42:41 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-22 13:42:52 +0200
commite0ec22794b6ab6a8dde817c12ab1c6c74892ecf5 (patch)
treefb49b63e99c99734c1ad8352783d684134e2b273 /pkgs/development/python-modules/async-upnp-client
parentpython3Packages.auth0-python: fix build, add missing dep (diff)
downloadnixpkgs-e0ec22794b6ab6a8dde817c12ab1c6c74892ecf5.tar.gz
python3Packages.async-upnp-client: 0.18.0 -> 0.19.0
Diffstat (limited to 'pkgs/development/python-modules/async-upnp-client')
-rw-r--r--pkgs/development/python-modules/async-upnp-client/default.nix24
1 files changed, 21 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix
index 46084fcd8a9d..369288293e1a 100644
--- a/pkgs/development/python-modules/async-upnp-client/default.nix
+++ b/pkgs/development/python-modules/async-upnp-client/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "async-upnp-client";
- version = "0.18.0";
- disabled = pythonOlder "3.5";
+ version = "0.19.0";
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
- sha256 = "sha256-pntOy7J4dPtAS8ZzxLLV79VQ36r+0sXMImJFhDk9bQw=";
+ sha256 = "0xj3j54nasl59gs1k84h3fixjsaqn7whg33h6wi99l5yfbwfqv8p";
};
propagatedBuildInputs = [
@@ -36,6 +36,24 @@ buildPythonPackage rec {
pytest-asyncio
];
+ disabledTests = [
+ # socket.gaierror: [Errno -2] Name or service not known
+ "test_get_local_ip"
+ "test_async_get_local_ip"
+ # OSError: [Errno 101] Network is unreachable
+ "test_subscribe_fail"
+ "test_subscribe_auto_resubscribe"
+ "test_subscribe_manual_resubscribe"
+ "test_auto_resubscribe_fail"
+ "test_on_notify_dlna_event"
+ "test_on_notify_upnp_event"
+ "test_unsubscribe"
+ "test_subscribe"
+ "test_subscribe_renew"
+ "test_start_server"
+ "test_init"
+ ];
+
pythonImportsCheck = [ "async_upnp_client" ];
meta = with lib; {