10 buildPythonPackage rec {
11 pname = "opensensemap-api";
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "home-assistant-ecosystem";
19 repo = "python-opensensemap-api";
20 rev = "refs/tags/${version}";
21 hash = "sha256-iUSdjU41JOT7k044EI2XEvJiSo6V4mO6S51EcIughEM=";
24 propagatedBuildInputs = [
32 pythonImportsCheck = [ "opensensemap_api" ];
35 description = "OpenSenseMap API Python client";
37 Python Client for interacting with the openSenseMap API. All
38 available information from the sensor can be retrieved.
40 homepage = "https://github.com/home-assistant-ecosystem/python-opensensemap-api";
41 changelog = "https://github.com/home-assistant-ecosystem/python-opensensemap-api/releases/tag/${version}";
42 license = with licenses; [ mit ];
43 maintainers = with maintainers; [ fab ];