mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
python3Packages.google_cloud_container: 2.0.1 -> 2.1.0
This commit is contained in:
parent
f2b0d07cf0
commit
7cbe301ffc
@ -1,23 +1,20 @@
|
|||||||
{ stdenv
|
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, google_api_core
|
||||||
, buildPythonPackage
|
, grpc_google_iam_v1, libcst, mock, proto-plus, pytest, pytest-asyncio }:
|
||||||
, fetchPypi
|
|
||||||
, google_api_core
|
|
||||||
, grpc_google_iam_v1
|
|
||||||
, pytest
|
|
||||||
, mock
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-cloud-container";
|
pname = "google-cloud-container";
|
||||||
version = "2.0.1";
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "6f714e3d427e2b36d1365fc400f4d379972529fb40f798d9c0e06c7c3418fc89";
|
sha256 = "07rcq4c49zfaacyn5df62bs7qjf5hpmdm9mpb6nx510lylq0507x";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest mock ];
|
disabled = pythonOlder "3.6";
|
||||||
propagatedBuildInputs = [ google_api_core grpc_google_iam_v1 ];
|
|
||||||
|
checkInputs = [ mock pytest pytest-asyncio ];
|
||||||
|
propagatedBuildInputs =
|
||||||
|
[ google_api_core grpc_google_iam_v1 libcst proto-plus ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest tests/unit
|
pytest tests/unit
|
||||||
@ -25,7 +22,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Google Container Engine API client library";
|
description = "Google Container Engine API client library";
|
||||||
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
|
homepage = "https://github.com/googleapis/python-container";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = [ maintainers.costrouc ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user