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 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, 15 16 }: 16 17 17 18 buildPythonPackage rec { 18 19 pname = "aiodiscover"; 19 - version = "2.0.0"; 20 + version = "2.1.0"; 20 21 pyproject = true; 21 22 22 23 disabled = pythonOlder "3.7"; ··· 25 26 owner = "bdraco"; 26 27 repo = "aiodiscover"; 27 28 rev = "refs/tags/v${version}"; 28 - hash = "sha256-7oeyuwirQ2mm0UQEOwTkAz126UnxkoMjg+DDu5DWY3E="; 29 + hash = "sha256-+DcROb6jR0veD3oSKgyJHUi1VtCT54yBKvVqir5y+R4="; 29 30 }; 30 31 31 - nativeBuildInputs = [ 32 - setuptools 33 - ]; 32 + nativeBuildInputs = [ setuptools ]; 34 33 35 34 propagatedBuildInputs = [ 36 35 async-timeout ··· 52 51 "test_async_discover_hosts" 53 52 ]; 54 53 55 - pythonImportsCheck = [ 56 - "aiodiscover" 57 - ]; 54 + pythonImportsCheck = [ "aiodiscover" ]; 58 55 59 56 meta = with lib; { 60 57 description = "Python module to discover hosts via ARP and PTR lookup";