python3.pkgs.pydrive: init at 1.3.0
This commit is contained in:
parent
52e9198719
commit
4fb168176a
33
pkgs/development/python-modules/pydrive/default.nix
Normal file
33
pkgs/development/python-modules/pydrive/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {}));
|
||||
|
Loading…
Reference in New Issue
Block a user