pythonPackages.google_resumeable_media: init at 0.3.1

This commit is contained in:
Chris Ostrouchov
2018-11-02 13:58:45 -04:00
parent 80f5d78852
commit f5af8bf5f1
2 changed files with 36 additions and 5 deletions

View File

@@ -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 ];
};
}