11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 tag = "release-${version}";
22 hash = "sha256-7GtY/6uuLe7K9T7xMVt2ytpA6MKVWnyEoLtA5dSMiH4=";
25 build-system = [ setuptools ];
27 dependencies = [ aiohttp ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "pyfronius" ];
34 description = "Python module to communicate with Fronius Symo";
35 homepage = "https://github.com/nielstron/pyfronius";
36 changelog = "https://github.com/nielstron/pyfronius/releases/tag/release-${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];
39 # https://github.com/nielstron/pyfronius/issues/18
40 broken = versionAtLeast aiohttp.version "3.10.1";