blob: 06135070f86d915bfb15596ec429f9304fae108f (
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
33
34
35
36
37
38
|
{
lib,
aiohttp,
buildPythonPackage,
docopt,
fetchPypi,
pyyaml,
}:
buildPythonPackage rec {
pname = "eliqonline";
version = "1.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "hOUN4cA4pKVioIrfJM02GOnZdDRc7xbNtvHfoD3//bM=";
};
propagatedBuildInputs = [
aiohttp
docopt
pyyaml
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "eliqonline" ];
meta = {
description = "Python client to the Eliq Online API";
mainProgram = "eliqonline";
homepage = "https://github.com/molobrakos/eliqonline";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}
|