python310Packages.meraki: 1.34.0 -> 1.36.0

Changelog: https://github.com/meraki/dashboard-api-python/releases/tag/1.36.0
This commit is contained in:
Fabian Affolter 2023-08-17 00:08:20 +02:00
parent 738688f069
commit dc0009d9fc

View file

@ -1,18 +1,21 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, aiohttp
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "meraki";
version = "1.34.0";
version = "1.36.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-rAFoIKHrhHRqcXmvbzlFKFIaHxVLp6CJUhNASwHhpPk=";
hash = "sha256-VkXA5eEIEcyPlyI566rwtmIGauxD4ra0Q4ccH4ojc0U=";
};
propagatedBuildInputs = [
@ -20,6 +23,9 @@ buildPythonPackage rec {
requests
];
# All tests require an API key
doCheck = false;
pythonImportsCheck = [
"meraki"
];