mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.eliqonline: init at 1.2.2
This commit is contained in:
parent
293e6f0ce5
commit
64c7052abc
41
pkgs/development/python-modules/eliqonline/default.nix
Normal file
41
pkgs/development/python-modules/eliqonline/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -2434,6 +2434,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user