about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiodiscover
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-29 01:40:46 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-30 15:07:13 +0200
commitc091245d16dd095f6b27c514ded25a30c0b832c0 (patch)
tree4512eb715141eb86e041f15daa1768ac4d0d1940 /pkgs/development/python-modules/aiodiscover
parentc1487a18d133ff8c15b674130c618c128ba7b4fe (diff)
python3Packages.aiodiscover: 1.4.11 -> 1.4.13
Diffstat (limited to 'pkgs/development/python-modules/aiodiscover')
-rw-r--r--pkgs/development/python-modules/aiodiscover/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aiodiscover/default.nix b/pkgs/development/python-modules/aiodiscover/default.nix
index d8fb5c6b38b62..6160119259676 100644
--- a/pkgs/development/python-modules/aiodiscover/default.nix
+++ b/pkgs/development/python-modules/aiodiscover/default.nix
@@ -1,4 +1,5 @@
 { lib
+, async-timeout
 , buildPythonPackage
 , dnspython
 , fetchFromGitHub
@@ -12,7 +13,7 @@
 
 buildPythonPackage rec {
   pname = "aiodiscover";
-  version = "1.4.11";
+  version = "1.4.13";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -21,10 +22,11 @@ buildPythonPackage rec {
     owner = "bdraco";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-s5g8otQSWTAOkN4q1LrM/FxVlOnGSv8XKtIDkdwcHMg=";
+    sha256 = "sha256-tIbLb4Jk3vR1hVcdUPuYJrse7BcfE4Z/dXShs/uBDBo=";
   };
 
   propagatedBuildInputs = [
+    async-timeout
     dnspython
     netifaces
     pyroute2