about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/eliqonline/default.nix
blob: 3d3261071bbc144a7ac71b97e8976201501daaa4 (plain) (blame)
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
39
40
41
42
{ lib
, aiohttp
, buildPythonPackage
, docopt
, fetchPypi
, pythonOlder
, pyyaml
}:

buildPythonPackage rec {
  pname = "eliqonline";
  version = "1.2.2";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "hOUN4cA4pKVioIrfJM02GOnZdDRc7xbNtvHfoD3//bM=";
  };

  propagatedBuildInputs = [
    aiohttp
    docopt
    pyyaml
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "eliqonline"
  ];

  meta = with lib; {
    description = "Python client to the Eliq Online API";
    mainProgram = "eliqonline";
    homepage = "https://github.com/molobrakos/eliqonline";
    license = licenses.lgpl3Only;
    maintainers = with maintainers; [ fab ];
  };
}