Merge pull request #222268 from dylanmtaylor/meraki
python3Packages.meraki: init at 1.30.0
This commit is contained in:
commit
83344f5d45
2 changed files with 35 additions and 0 deletions
33
pkgs/development/python-modules/meraki/default.nix
Normal file
33
pkgs/development/python-modules/meraki/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, aiohttp
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "meraki";
|
||||||
|
version = "1.30.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-s26xGwWSWB+qpOTUe8IYo53ywYOaaUWjDznFqpmRlak=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"meraki"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Provides all current Meraki dashboard API calls to interface with the Cisco Meraki cloud-managed platform";
|
||||||
|
homepage = "https://github.com/meraki/dashboard-api-python";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dylanmtaylor ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5953,6 +5953,8 @@ self: super: with self; {
|
||||||
|
|
||||||
memory_profiler = callPackage ../development/python-modules/memory_profiler { };
|
memory_profiler = callPackage ../development/python-modules/memory_profiler { };
|
||||||
|
|
||||||
|
meraki = callPackage ../development/python-modules/meraki { };
|
||||||
|
|
||||||
mercantile = callPackage ../development/python-modules/mercantile { };
|
mercantile = callPackage ../development/python-modules/mercantile { };
|
||||||
|
|
||||||
mercurial = toPythonModule (pkgs.mercurial.override {
|
mercurial = toPythonModule (pkgs.mercurial.override {
|
||||||
|
|
Loading…
Reference in a new issue