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:
parent
738688f069
commit
dc0009d9fc
1 changed files with 9 additions and 3 deletions
|
@ -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"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue