nixpkgs/pkgs/development/python-modules/google_resumable_media/default.nix
2019-10-27 16:26:44 +01:00

34 lines
720 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, six
, requests
, setuptools
, pytest
, mock
}:
buildPythonPackage rec {
pname = "google-resumable-media";
version = "0.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "cdeb8fbb3551a665db921023603af2f0d6ac59ad8b48259cb510b8799505775f";
};
checkInputs = [ pytest mock ];
propagatedBuildInputs = [ requests setuptools six ];
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 ];
};
}