1{ lib 2, buildPythonPackage 3, fetchPypi 4, google-api-python-client 5, oauth2client 6, pyopenssl 7, pyyaml 8, six 9}: 10 11buildPythonPackage rec { 12 pname = "pydrive2"; 13 version = "1.14.0"; 14 15 src = fetchPypi { 16 pname = "PyDrive2"; 17 inherit version; 18 sha256 = "sha256-212jvmcWMPVxynEAsoHYtdcv0His1CUkem0pLis9KEA="; 19 }; 20 21 propagatedBuildInputs = [ 22 google-api-python-client 23 oauth2client 24 pyopenssl 25 pyyaml 26 six 27 ]; 28 29 doCheck = false; 30 31 pythonImportsCheck = [ "pydrive2" ]; 32 33 meta = { 34 description = "Google Drive API Python wrapper library. Maintained fork of PyDrive."; 35 homepage = "https://github.com/iterative/PyDrive2"; 36 license = lib.licenses.asl20; 37 maintainers = with lib.maintainers; [ sei40kr ]; 38 }; 39}