10 buildPythonPackage rec {
11 pname = "airthings-cloud";
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "Danielhiversen";
20 rev = "refs/tags/${version}";
21 hash = "sha256-HdH/z5xsumOXU0ZYOUc8LHpjKGkfp5e5yGER+Nm8xB4=";
24 propagatedBuildInputs = [
29 # Project has no tests
32 pythonImportsCheck = [ "airthings" ];
35 description = "Python module for Airthings";
36 homepage = "https://github.com/Danielhiversen/pyAirthings";
37 changelog = "https://github.com/Danielhiversen/pyAirthings/releases/tag/${version}";
38 license = with licenses; [ mit ];
39 maintainers = with maintainers; [ fab ];