ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / foobot-async / default.nix
blobcd5be4ab0c2a70629fb9fa35ca440111e4358548
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , aiohttp
6 , async-timeout
7 , aioresponses
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "foobot-async";
13   version = "1.0.0";
15   disabled = pythonOlder "3.5";
17   src = fetchPypi {
18     pname = "foobot_async";
19     inherit version;
20     sha256 = "fa557a22de925139cb4a21034ffdbcd01d28bf166c0e680eaf84a99206327f40";
21   };
23   propagatedBuildInputs = [
24     aiohttp
25     async-timeout
26   ];
28   checkInputs = [
29     aioresponses
30     pytestCheckHook
31   ];
33   pythonImportsCheck = [ "foobot_async" ];
35   meta = with lib; {
36     description = "API Client for Foobot Air Quality Monitoring devices";
37     homepage = "https://github.com/reefab/foobot_async";
38     license = licenses.mit;
39     maintainers = with maintainers; [ dotlambda ];
40   };