1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "pybalboa";
9 version = "0.13";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.8";
13
14 src = fetchFromGitHub {
15 owner = "garbled1";
16 repo = pname;
17 rev = version;
18 sha256 = "0aw5jxpsvzyx05y1mg8d63lxx1i607yb6x19n9jil5wfis95m8pd";
19 };
20
21 # Project has no tests
22 doCheck = false;
23
24 pythonImportsCheck = [
25 "pybalboa"
26 ];
27
28 meta = with lib; {
29 description = " Python module to interface with a Balboa Spa";
30 homepage = "https://github.com/garbled1/pybalboa";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ fab ];
33 };
34}