blob: 78c12434e1ce74dff072bdfb9030c3651ab69454 (
plain)
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "advantage-air";
version = "0.4.4";
format = "setuptools";
src = fetchPypi {
pname = "advantage_air";
inherit version;
hash = "sha256-4rRR9IxzH5EiYfWzWYeyCwoLB2LetBVyH7L3nkvp+gA=";
};
propagatedBuildInputs = [ aiohttp ];
# No tests
doCheck = false;
pythonImportsCheck = [ "advantage_air" ];
meta = {
description = "API helper for Advantage Air's MyAir and e-zone API";
homepage = "https://github.com/Bre77/advantage_air";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jamiemagee ];
};
}
|