1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "orvibo";
9 version = "1.1.2";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "happyleavesaoc";
14 repo = "python-orvibo";
15 rev = version;
16 sha256 = "sha256-Azmho47CEbRo18emmLKhYa/sViQX0oxUTUk4zdrpOaE=";
17 };
18
19 # Project as no tests
20 doCheck = false;
21 pythonImportsCheck = [ "orvibo" ];
22
23 meta = with lib; {
24 description = "Python client to work with Orvibo devices";
25 homepage = "https://github.com/happyleavesaoc/python-orvibo";
26 license = with licenses; [ mit ];
27 maintainers = with maintainers; [ fab ];
28 };
29}