13 buildPythonPackage rec {
14 pname = "blebox-uniapi";
16 format = "setuptools";
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
22 repo = "blebox_uniapi";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-rgZ/nHihhPZnc8LLtsrAXDCQT1XaXOnI7xBid+6khfs=";
28 substituteInPlace setup.py \
29 --replace "pytest-runner" ""
32 propagatedBuildInputs = [
44 pythonImportsCheck = [
49 description = "Python API for accessing BleBox smart home devices";
50 homepage = "https://github.com/blebox/blebox_uniapi";
51 license = licenses.asl20;
52 maintainers = with maintainers; [ dotlambda ];