10 buildPythonPackage rec {
11 pname = "pyweatherflowrest";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
21 hash = "sha256-l1V3HgzqnnoY6sWHwfgBtcIR782RwKhekY2qOLrUMNY=";
24 build-system = [ setuptools ];
26 dependencies = [ aiohttp ];
28 # Module has no tests. test.py is a demo script
31 pythonImportsCheck = [ "pyweatherflowrest" ];
34 description = "Python module to get data from WeatherFlow Weather Stations";
35 homepage = "https://github.com/briis/pyweatherflowrest";
36 changelog = "https://github.com/briis/pyweatherflowrest/blob/v${version}/CHANGELOG.md";
37 license = with licenses; [ mit ];
38 maintainers = with maintainers; [ fab ];