Merge pull request #146873 from fabaff/eliqonline
python3Packages.eliqonline: init at 1.2.2
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
{ 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";
|
||||
homepage = "https://github.com/molobrakos/eliqonline";
|
||||
license = licenses.lgpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -220,7 +220,7 @@
|
||||
"egardia" = ps: with ps; [ pythonegardia ];
|
||||
"eight_sleep" = ps: with ps; [ pyeight ];
|
||||
"elgato" = ps: with ps; [ elgato ];
|
||||
"eliqonline" = ps: with ps; [ ]; # missing inputs: eliqonline
|
||||
"eliqonline" = ps: with ps; [ eliqonline ];
|
||||
"elkm1" = ps: with ps; [ elkm1-lib ];
|
||||
"elv" = ps: with ps; [ pypca ];
|
||||
"emby" = ps: with ps; [ pyemby ];
|
||||
|
||||
@@ -2438,6 +2438,8 @@ in {
|
||||
|
||||
eliot = callPackage ../development/python-modules/eliot { };
|
||||
|
||||
eliqonline = callPackage ../development/python-modules/eliqonline { };
|
||||
|
||||
elmax = callPackage ../development/python-modules/elmax { };
|
||||
|
||||
emailthreads = callPackage ../development/python-modules/emailthreads { };
|
||||
|
||||
Reference in New Issue
Block a user