blob: b6837f326e0d96ba41c84f96cec1c9747febd7c1 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "goalzero";
version = "0.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-h/EaEOe0zvnO5BYfcIyC3Vq8sPED6ts1IeI/GM+vm7c=";
};
propagatedBuildInputs = [ aiohttp ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "goalzero" ];
meta = {
description = "Goal Zero Yeti REST Api Library";
homepage = "https://github.com/tkdrob/goalzero";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|