Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / advantage-air / default.nix
blobffe66565dc2c460ce9ca184c737af5f44a91088b
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchPypi
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "advantage-air";
10   version = "0.4.4";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     pname = "advantage_air";
17     inherit version;
18     hash = "sha256-4rRR9IxzH5EiYfWzWYeyCwoLB2LetBVyH7L3nkvp+gA=";
19   };
21   propagatedBuildInputs = [
22     aiohttp
23   ];
25   # No tests
26   doCheck = false;
28   pythonImportsCheck = [
29     "advantage_air"
30   ];
32   meta = with lib; {
33     description = "API helper for Advantage Air's MyAir and e-zone API";
34     homepage = "https://github.com/Bre77/advantage_air";
35     license = licenses.mit;
36     maintainers = with maintainers; [ jamiemagee ];
37   };