linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / luftdaten / default.nix
blob71daa4bdbfa43e0a11e0318253aa310e9fca1e7d
1 { lib, buildPythonPackage, isPy3k, fetchPypi, aiohttp, async-timeout }:
3 buildPythonPackage rec {
4   pname = "luftdaten";
5   version = "0.6.5";
7   disabled = !isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "sha256-5SFb+psULyg9UKVY3oJPNLF3TGS/W+Bxoj79iTzReL4=";
12   };
14   propagatedBuildInputs = [ aiohttp async-timeout ];
16   # No tests implemented
17   doCheck = false;
19   pythonImportsCheck = [ "luftdaten" ];
21   meta = with lib; {
22     description = "Python API for interacting with luftdaten.info";
23     homepage = "https://github.com/home-assistant-ecosystem/python-luftdaten";
24     license = licenses.mit;
25     maintainers = with maintainers; [ dotlambda ];
26   };