1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 02:26:19 +03:00
nixpkgs/pkgs/development/python-modules/python-google-drive-api/default.nix

42 lines
824 B
Nix

{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
mashumaro,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "python-google-drive-api";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tronikos";
repo = "python-google-drive-api";
tag = "v${version}";
hash = "sha256-3es2rmndahH+DMEEwjBxyZKd27qDZIocPbzScF7B5fA=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
mashumaro
];
pythonImportsCheck = [ "google_drive_api" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Python client library for Google Drive API";
homepage = "https://github.com/tronikos/python-google-drive-api";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}