9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.8";
16 src = fetchFromGitHub {
18 repo = "python-btsocket";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-/T89GZJth7pBGQuN1ytCf649oWv7aZcfPHjYoftbLw8=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "btsocket" ];
28 description = "Library to interact with the Bluez Bluetooth Management API";
29 homepage = "https://github.com/ukBaz/python-btsocket";
30 license = with licenses; [ mit ];
31 maintainers = with maintainers; [ fab ];