nixpkgs/pkgs/tools/admin/meraki-cli/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

59 lines
1.0 KiB
Nix

{ 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 = "Simple CLI tool to automate and control your Cisco Meraki Dashboard";
license = licenses.mit;
maintainers = with maintainers; [ dylanmtaylor ];
platforms = platforms.unix;
mainProgram = "meraki";
};
}