about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/opensensemap-api/default.nix
blob: 8311cb6c57e174447ba35da1d2aaf86af51beba0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, async-timeout
}:

buildPythonPackage rec {
  pname = "opensensemap-api";
  version = "0.1.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-e60aVIoKFqo++WJHUYGutugkjB8YgyNQgJbILgAyOOY=";
  };

  propagatedBuildInputs = [
    aiohttp
    async-timeout
  ];

  # no tests are present
  doCheck = false;

  pythonImportsCheck = [ "opensensemap_api" ];

  meta = with lib; {
    description = "OpenSenseMap API Python client";
    longDescription = ''
      Python Client for interacting with the openSenseMap API. All
      available information from the sensor can be retrieved.
    '';
    homepage = "https://github.com/home-assistant-ecosystem/python-opensensemap-api";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}