87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
33 lines
681 B
Nix
33 lines
681 B
Nix
{ 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 ];
|
|
};
|
|
}
|