depot/third_party/nixpkgs/pkgs/development/python-modules/meraki/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

34 lines
771 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, requests
}:
buildPythonPackage rec {
pname = "meraki";
version = "1.33.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-uzrnKYCythDa+DK1X87zcL9O4cmjRDqxR2hXoN286KQ=";
};
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 ];
};
}