Merge pull request #249632 from fabaff/meraki-bump

python310Packages.meraki: 1.34.0 -> 1.36.0
This commit is contained in:
OTABI Tomoya 2023-08-17 15:22:57 +09:00 committed by GitHub
commit 7ab9f95d9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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