Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #305253 from fabaff/aiodiscover-bump

python312Packages.aiodiscover: 2.0.0 -> 2.1.0

authored by Fabian Affolter and committed by GitHub 32a32f26 1d67e14d

+19 -22
+19 -22
pkgs/development/python-modules/aiodiscover/default.nix
··· 1 - { lib 2 - , aiodns 3 - , async-timeout 4 - , buildPythonPackage 5 - , cached-ipaddress 6 - , dnspython 7 - , fetchFromGitHub 8 - , ifaddr 9 - , netifaces 10 - , pyroute2 11 - , pytest-asyncio 12 - , pytestCheckHook 13 - , pythonOlder 14 - , setuptools 15 }: 16 17 buildPythonPackage rec { 18 pname = "aiodiscover"; 19 - version = "2.0.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "bdraco"; 26 repo = "aiodiscover"; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-7oeyuwirQ2mm0UQEOwTkAz126UnxkoMjg+DDu5DWY3E="; 29 }; 30 31 - nativeBuildInputs = [ 32 - setuptools 33 - ]; 34 35 propagatedBuildInputs = [ 36 async-timeout ··· 52 "test_async_discover_hosts" 53 ]; 54 55 - pythonImportsCheck = [ 56 - "aiodiscover" 57 - ]; 58 59 meta = with lib; { 60 description = "Python module to discover hosts via ARP and PTR lookup";
··· 1 + { 2 + lib, 3 + aiodns, 4 + async-timeout, 5 + buildPythonPackage, 6 + cached-ipaddress, 7 + dnspython, 8 + fetchFromGitHub, 9 + ifaddr, 10 + netifaces, 11 + pyroute2, 12 + pytest-asyncio, 13 + pytestCheckHook, 14 + pythonOlder, 15 + setuptools, 16 }: 17 18 buildPythonPackage rec { 19 pname = "aiodiscover"; 20 + version = "2.1.0"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "bdraco"; 27 repo = "aiodiscover"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-+DcROb6jR0veD3oSKgyJHUi1VtCT54yBKvVqir5y+R4="; 30 }; 31 32 + nativeBuildInputs = [ setuptools ]; 33 34 propagatedBuildInputs = [ 35 async-timeout ··· 51 "test_async_discover_hosts" 52 ]; 53 54 + pythonImportsCheck = [ "aiodiscover" ]; 55 56 meta = with lib; { 57 description = "Python module to discover hosts via ARP and PTR lookup";