summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/async-upnp-client
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-15 16:35:32 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-16 04:22:31 +0200
commitf702a64062abfa6fe2d5aeb8eb30eb88025be1cf (patch)
treeee011cf2d9d86095f941ecc72b06cae609509b40 /pkgs/development/python-modules/async-upnp-client
parentpython3Packages.herepy: relax requests constraint (diff)
downloadnixpkgs-f702a64062abfa6fe2d5aeb8eb30eb88025be1cf.tar.gz
python3Packages.async-upnp-client: 0.21.0 -> 0.21.3
Diffstat (limited to 'pkgs/development/python-modules/async-upnp-client')
-rw-r--r--pkgs/development/python-modules/async-upnp-client/default.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix
index 7f235485b757..f9256b11ae78 100644
--- a/pkgs/development/python-modules/async-upnp-client/default.nix
+++ b/pkgs/development/python-modules/async-upnp-client/default.nix
@@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "async-upnp-client";
- version = "0.21.0";
+ version = "0.21.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
- sha256 = "sha256-GKvljxm2N4pC8Mh+UOW170VPB3va9X9BuQXp6OJ/SSQ=";
+ sha256 = "sha256-85MdzvNac199pZObhfGv33ycgzt4nr9eHYvSjMW6kq8=";
};
propagatedBuildInputs = [
@@ -39,20 +39,22 @@ buildPythonPackage rec {
disabledTests = [
# socket.gaierror: [Errno -2] Name or service not known
- "test_get_local_ip"
"test_async_get_local_ip"
+ "test_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_init"
"test_on_notify_dlna_event"
"test_on_notify_upnp_event"
- "test_unsubscribe"
+ "test_server_init"
+ "test_server_start"
+ "test_start_server"
"test_subscribe"
+ "test_subscribe_auto_resubscribe"
+ "test_subscribe_fail"
+ "test_subscribe_manual_resubscribe"
"test_subscribe_renew"
- "test_start_server"
- "test_init"
+ "test_unsubscribe"
] ++ lib.optionals stdenv.isDarwin [
"test_deferred_callback_url"
];