From c8a338f0e3b629ce13715072d456a2a71930e663 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:14:07 +0100 Subject: [PATCH] python3Packages.aiooui: 0.1.7 -> 0.1.9 https://github.com/Bluetooth-Devices/aiooui/blob/v0.1.9/CHANGELOG.md --- pkgs/development/python-modules/aiooui/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/aiooui/default.nix b/pkgs/development/python-modules/aiooui/default.nix index 5e62b5dadb4a..1253047a04e3 100644 --- a/pkgs/development/python-modules/aiooui/default.nix +++ b/pkgs/development/python-modules/aiooui/default.nix @@ -4,13 +4,14 @@ fetchFromGitHub, poetry-core, pytest-asyncio, + pytest-cov-stub, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "aiooui"; - version = "0.1.7"; + version = "0.1.9"; pyproject = true; disabled = pythonOlder "3.9"; @@ -19,22 +20,22 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "aiooui"; tag = "v${version}"; - hash = "sha256-vnO3Lh+d/8mES2i4jKTH4RviURUFqb3Vj6u5sxUGf1o="; + hash = "sha256-tY8/hb3BpxzKM/IB7anfmqGcXK6FmiuoJVxqpFW1Maw="; }; postPatch = '' # Remove requirements and build part for the OUI data substituteInPlace pyproject.toml \ - --replace-fail "-v -Wdefault --cov=aiooui --cov-report=term-missing:skip-covered" "" \ --replace-fail 'script = "build_oui.py"' "" \ - --replace-fail ", 'requests'" "" \ + --replace-fail ", 'requests', 'aiohttp'" "" \ --replace-fail '"setuptools>=65.4.1", ' "" ''; - nativeBuildInputs = [ poetry-core ]; + build-system = [ poetry-core ]; nativeCheckInputs = [ pytest-asyncio + pytest-cov-stub pytestCheckHook ]; @@ -43,7 +44,7 @@ buildPythonPackage rec { meta = with lib; { description = "Async OUI lookups"; homepage = "https://github.com/Bluetooth-Devices/aiooui"; - changelog = "https://github.com/Bluetooth-Devices/aiooui/blob/${version}/CHANGELOG.md"; + changelog = "https://github.com/Bluetooth-Devices/aiooui/blob/${src.tag}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };