nixpkgs/pkgs/development/python-modules/gspread/default.nix
Peder Bergebakken Sundt bc838edbdf
Merge pull request #312941 from r-ryantm/auto-update/python311Packages.gspread
python311Packages.gspread: 6.1.0 -> 6.1.2
2024-06-05 03:46:43 +02:00

51 lines
986 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
google-auth,
google-auth-oauthlib,
pytest-vcr,
pytestCheckHook,
pythonOlder,
strenum,
}:
buildPythonPackage rec {
pname = "gspread";
version = "6.1.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "burnash";
repo = "gspread";
rev = "refs/tags/v${version}";
hash = "sha256-hvT4e1l3MTT3WMDSfKvZ7BU8dzkzgPROHrnx5mKyCR4=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
google-auth
google-auth-oauthlib
strenum
];
nativeCheckInputs = [
pytest-vcr
pytestCheckHook
];
pythonImportsCheck = [ "gspread" ];
meta = with lib; {
description = "Google Spreadsheets client library";
homepage = "https://github.com/burnash/gspread";
changelog = "https://github.com/burnash/gspread/blob/v${version}/HISTORY.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}