12 buildPythonPackage rec {
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
22 rev = "refs/tags/${version}";
23 hash = "sha256-jms7uSeafLxq26E9pyVVXtnW7yYD0OrU4KrXxTXoC4M=";
26 build-system = [ setuptools ];
28 dependencies = [ pyserial-asyncio-fast ];
35 pythonImportsCheck = [ "pyotgw" ];
38 # Tests require network access
39 "connect_timeouterror"
43 description = "Python module to interact the OpenTherm Gateway";
44 homepage = "https://github.com/mvn23/pyotgw";
45 changelog = "https://github.com/mvn23/pyotgw/blob/${version}/CHANGELOG.md";
46 license = with licenses; [ gpl3Plus ];
47 maintainers = with maintainers; [ fab ];