about summary refs log tree commit diff
path: root/pkgs/development/python-modules/async-upnp-client
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-08-21 00:01:34 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-08-21 00:01:34 +0200
commita5f2d6c924df144f725e871d9cd8186779584dae (patch)
treea7338da348cf6871b7713815a9b3c41c473e8a69 /pkgs/development/python-modules/async-upnp-client
parent0b3c8dcc3c6abd50b4924306cba3bdb7826f7ccd (diff)
python3Packages.async-upnp-client: 0.19.1 -> 0.19.2
Diffstat (limited to 'pkgs/development/python-modules/async-upnp-client')
-rw-r--r--pkgs/development/python-modules/async-upnp-client/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix
index 13c78783ed061..4b89204ca5e61 100644
--- a/pkgs/development/python-modules/async-upnp-client/default.nix
+++ b/pkgs/development/python-modules/async-upnp-client/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , aiohttp
 , async-timeout
 , buildPythonPackage
@@ -13,14 +14,14 @@
 
 buildPythonPackage rec {
   pname = "async-upnp-client";
-  version = "0.19.1";
+  version = "0.19.2";
   disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "StevenLooman";
     repo = "async_upnp_client";
     rev = version;
-    sha256 = "sha256-qxEn9UrQuwRaP7sZlu3854gDI7Gqku055DF8KvsU6p4=";
+    sha256 = "1v8d2lvxihqasn7866zssys16s0lgxkk6ri2dp4rr7wr8g9ixvdr";
   };
 
   propagatedBuildInputs = [
@@ -52,6 +53,8 @@ buildPythonPackage rec {
     "test_subscribe_renew"
     "test_start_server"
     "test_init"
+  ] ++ lib.optionals stdenv.isDarwin [
+    "test_deferred_callback_url"
   ];
 
   pythonImportsCheck = [ "async_upnp_client" ];