blob: 5cecd56186b71d06daca740dd94e2c66926fb713 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aiooui";
version = "0.1.9";
pyproject = true;
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = "aiooui";
tag = "v${version}";
hash = "sha256-tY8/hb3BpxzKM/IB7anfmqGcXK6FmiuoJVxqpFW1Maw=";
};
postPatch = ''
# Remove requirements and build part for the OUI data
substituteInPlace pyproject.toml \
--replace-fail 'script = "build_oui.py"' "" \
--replace-fail ", 'requests', 'aiohttp'" "" \
--replace-fail '"setuptools>=65.4.1", ' ""
'';
build-system = [ poetry-core ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "aiooui" ];
meta = {
description = "Async OUI lookups";
homepage = "https://github.com/Bluetooth-Devices/aiooui";
changelog = "https://github.com/Bluetooth-Devices/aiooui/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|