17 buildPythonPackage rec {
22 disabled = pythonOlder "3.9";
24 src = fetchFromGitHub {
27 rev = "refs/tags/v${version}";
28 hash = "sha256-AaDV2EBWCFR9uceWc+GtwhhkUEqRxxVNCgOvu0kFzUU=";
31 nativeBuildInputs = [ poetry-core ];
33 propagatedBuildInputs = [
48 substituteInPlace pyproject.toml \
49 --replace " --cov=yalexs_ble --cov-report=term-missing:skip-covered" ""
52 pythonImportsCheck = [ "yalexs_ble" ];
55 description = "Library for Yale BLE devices";
56 homepage = "https://github.com/bdraco/yalexs-ble";
57 changelog = "https://github.com/bdraco/yalexs-ble/blob/v${version}/CHANGELOG.md";
58 license = with licenses; [ gpl3Only ];
59 maintainers = with maintainers; [ fab ];