pythonPackages.google_resumeable_media: init at 0.3.1
This commit is contained in:
parent
80f5d78852
commit
f5af8bf5f1
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, six
|
||||||
|
, requests
|
||||||
|
, pytest
|
||||||
|
, mock
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "google-resumable-media";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "97de518f8166d442cc0b61fab308bcd319dbb970981e667ec8ded44f5ce49836";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest mock ];
|
||||||
|
propagatedBuildInputs = [ six requests ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test tests/unit
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Utilities for Google Media Downloads and Resumable Uploads";
|
||||||
|
homepage = https://github.com/GoogleCloudPlatform/google-resumable-media-python;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -2444,10 +2444,9 @@ in {
|
|||||||
|
|
||||||
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
|
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
|
||||||
|
|
||||||
gpgme = toPythonModule (pkgs.gpgme.override {
|
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
|
||||||
pythonSupport = true;
|
|
||||||
inherit (self) python;
|
gpgme = toPythonModule (pkgs.gpgme.override { pythonSupport=true; });
|
||||||
});
|
|
||||||
|
|
||||||
gphoto2 = callPackage ../development/python-modules/gphoto2 {
|
gphoto2 = callPackage ../development/python-modules/gphoto2 {
|
||||||
inherit (pkgs) pkgconfig;
|
inherit (pkgs) pkgconfig;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user