depot/third_party/nixpkgs/pkgs/development/python-modules/meraki/default.nix
Default email c7e6337bd0 Project import generated by Copybara.
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
2023-04-29 12:46:19 -04:00

34 lines
771 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, requests
}:
buildPythonPackage rec {
pname = "meraki";
version = "1.32.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-3iZ9/d78nAnK2+Kv0+0tuvZcfSV6ZF6QRF3xYL3NqV4=";
};
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";
changelog = "https://github.com/meraki/dashboard-api-python/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ dylanmtaylor ];
};
}