Merge pull request #251435 from fabaff/gspread-bump

python311Packages.gspread: 5.9.0 -> 5.10.0
This commit is contained in:
Fabian Affolter 2023-08-25 23:27:52 +02:00 committed by GitHub
commit 5675ad3862
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,43 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, requests , flitBuildHook
, google-auth , google-auth
, google-auth-oauthlib , google-auth-oauthlib
, pytest-vcr
, pytestCheckHook
, pythonOlder , pythonOlder
, requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "gspread"; pname = "gspread";
version = "5.9.0"; version = "5.10.0";
format = "setuptools"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "burnash";
hash = "sha256-NLl4NLvvrM9ySXcCuuJtEvltBoXkmkGK/mqSqbvLnJw="; repo = "gspread";
rev = "refs/tags/v${version}";
hash = "sha256-GAlQYQVuwsnkXqZOvG66f9kig+m392CVlrgUTqrTKyA=";
}; };
propagatedBuildInputs = [ nativeBuildInputs = [
requests flitBuildHook
google-auth
google-auth-oauthlib
]; ];
# No tests included propagatedBuildInputs = [
doCheck = false; google-auth
google-auth-oauthlib
requests
];
nativeCheckInputs = [
pytest-vcr
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [
"gspread" "gspread"