python3.pkgs.pydrive: init at 1.3.0

This commit is contained in:
Jan Tojnar 2019-11-19 16:30:44 +01:00
parent 52e9198719
commit 4fb168176a
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, google_api_python_client
, oauth2client
, pyyaml
}:
buildPythonPackage rec {
pname = "pydrive";
version = "1.3.1";
src = fetchPypi {
pname = "PyDrive";
inherit version;
sha256 = "11q7l94mb34hfh9wkdwfrh5xw99y13wa33ba7xp1q23q4b60v2c3";
};
propagatedBuildInputs = [
google_api_python_client
oauth2client
pyyaml
];
# requires client_secrets.json
doCheck = false;
meta = {
description = "Google Drive API Python wrapper library";
homepage = "https://github.com/gsuitedevs/PyDrive";
license = lib.licenses.asl20;
};
}

View file

@ -958,6 +958,8 @@ in {
pydocumentdb = callPackage ../development/python-modules/pydocumentdb { };
pydrive = callPackage ../development/python-modules/pydrive { };
pydy = callPackage ../development/python-modules/pydy { };
pyexiv2 = disabledIf isPy3k (toPythonModule (callPackage ../development/python-modules/pyexiv2 {}));