1{ lib
2, buildPythonPackage
3, fetchPypi
4, aiohttp
5, requests
6}:
7
8buildPythonPackage rec {
9 pname = "meraki";
10 version = "1.33.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-uzrnKYCythDa+DK1X87zcL9O4cmjRDqxR2hXoN286KQ=";
16 };
17
18 propagatedBuildInputs = [
19 aiohttp
20 requests
21 ];
22
23 pythonImportsCheck = [
24 "meraki"
25 ];
26
27 meta = with lib; {
28 description = "Provides all current Meraki dashboard API calls to interface with the Cisco Meraki cloud-managed platform";
29 homepage = "https://github.com/meraki/dashboard-api-python";
30 changelog = "https://github.com/meraki/dashboard-api-python/releases/tag/${version}";
31 license = licenses.mit;
32 maintainers = with maintainers; [ dylanmtaylor ];
33 };
34}