about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiodiscover
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-25 21:50:59 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-02-03 00:01:55 +0100
commitf3654fb0bb87f292a7cc6d59bc1c0bf5a6d3de8e (patch)
tree56c55db58d4b0b4d8645a3f960ff378520906869 /pkgs/development/python-modules/aiodiscover
parent6c7fd66b5b60df3411a23b0df1de766d24df701d (diff)
python3Packages.aiodiscover: 1.4.5 -> 1.4.7
Diffstat (limited to 'pkgs/development/python-modules/aiodiscover')
-rw-r--r--pkgs/development/python-modules/aiodiscover/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiodiscover/default.nix b/pkgs/development/python-modules/aiodiscover/default.nix
index 268654ea9baa8..4e2b0c5897fc8 100644
--- a/pkgs/development/python-modules/aiodiscover/default.nix
+++ b/pkgs/development/python-modules/aiodiscover/default.nix
@@ -3,6 +3,7 @@
 , dnspython
 , fetchFromGitHub
 , ifaddr
+, netifaces
 , pyroute2
 , pytest-asyncio
 , pytestCheckHook
@@ -11,18 +12,21 @@
 
 buildPythonPackage rec {
   pname = "aiodiscover";
-  version = "1.4.5";
+  version = "1.4.7";
+  format = "setuptools";
+
   disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "bdraco";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-QfeAEFB5WikuriBTcfFIgnJw5H4vEcGIVX47fyDb1Dk=";
+    sha256 = "sha256-NtiShZpPFl+elYNPLaKAg6uV8pDJv0pyR+NTUiFoMm0=";
   };
 
   propagatedBuildInputs = [
     dnspython
+    netifaces
     pyroute2
     ifaddr
   ];
@@ -43,7 +47,9 @@ buildPythonPackage rec {
     "test_async_discover_hosts"
   ];
 
-  pythonImportsCheck = ["aiodiscover"];
+  pythonImportsCheck = [
+    "aiodiscover"
+  ];
 
   meta = with lib; {
     description = "Python module to discover hosts via ARP and PTR lookup";