11 buildPythonPackage rec {
12 pname = "youless-api";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "youless-python-bridge";
21 rev = "refs/tags/${version}";
22 hash = "sha256-MvGLIhkBbcGThKeqtlzVZct2o9PBLwcAELmn5pW3R6I=";
25 build-system = [ setuptools ];
27 dependencies = [ requests ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "youless_api" ];
34 description = "Python library for YouLess sensors";
35 homepage = "https://github.com/gjong/youless-python-bridge";
36 changelog = "https://github.com/gjong/youless-python-bridge/releases/tag/${version}";
37 license = with licenses; [ mit ];
38 maintainers = with maintainers; [ fab ];