12 buildPythonPackage rec {
15 format = "setuptools";
17 src = fetchFromGitHub {
19 repo = "python-airly";
21 hash = "sha256-weliT/FYnRX+pzVAyRWFly7lfj2z7P+hpq5SIhyIgmI=";
24 propagatedBuildInputs = [ aiohttp ];
26 # aiounittest is not supported on 3.12
27 doCheck = pythonOlder "3.12";
40 "InstallationsLoaderTestCase"
41 "MeasurementsSessionTestCase"
44 pythonImportsCheck = [ "airly" ];
47 description = "Python module for getting air quality data from Airly sensors";
48 homepage = "https://github.com/ak-ambi/python-airly";
49 license = with licenses; [ mit ];
50 maintainers = with maintainers; [ fab ];