meraki-cli: init at 1.5.0
This commit is contained in:
parent
c7f79ffaee
commit
2bac5de0f9
58
pkgs/tools/admin/meraki-cli/default.nix
Normal file
58
pkgs/tools/admin/meraki-cli/default.nix
Normal file
@ -0,0 +1,58 @@
|
||||
{ lib
|
||||
, argcomplete
|
||||
, jinja2
|
||||
, meraki
|
||||
, rich
|
||||
, fetchPypi
|
||||
, buildPythonApplication
|
||||
, pytestCheckHook
|
||||
, requests-mock
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "meraki-cli";
|
||||
version = "1.5.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "meraki_cli";
|
||||
inherit version;
|
||||
hash = "sha256-YOyeovqRqt6ZMXgLnIxRvPkcW259K8NIBGdb3PwjkMg=";
|
||||
};
|
||||
|
||||
disabledTests = [
|
||||
# requires files not in PyPI tarball
|
||||
"TestDocVersions"
|
||||
"TestHelps"
|
||||
# requires running "pip install"
|
||||
"TestUpgrade"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
argcomplete
|
||||
jinja2
|
||||
meraki
|
||||
rich
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
requests-mock
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"meraki_cli"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/PackeTsar/meraki-cli";
|
||||
description = "A simple CLI tool to automate and control your Cisco Meraki Dashboard";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dylanmtaylor ];
|
||||
platforms = platforms.unix;
|
||||
mainProgram = "meraki";
|
||||
};
|
||||
}
|
@ -18425,6 +18425,8 @@ with pkgs;
|
||||
|
||||
mdl = callPackage ../development/tools/misc/mdl { };
|
||||
|
||||
meraki-cli = python3Packages.callPackage ../tools/admin/meraki-cli { };
|
||||
|
||||
python-matter-server = with python3Packages; toPythonApplication python-matter-server;
|
||||
|
||||
minify = callPackage ../development/web/minify { };
|
||||
|
Loading…
Reference in New Issue
Block a user