mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
pythonPackages.google_cloud_container: init at 0.1.1
This commit is contained in:
parent
a3b4598970
commit
fcf9839117
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, google_api_core
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "google-cloud-container";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "a89afcb1fe96bc9361c231c223c3bbe19fa3787caeb4697cd5778990e1077270";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
propagatedBuildInputs = [ google_api_core ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest tests/unit
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Google Container Engine API client library";
|
||||||
|
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -2452,6 +2452,8 @@ in {
|
|||||||
|
|
||||||
google_cloud_bigtable = callPackage ../development/python-modules/google_cloud_bigtable { };
|
google_cloud_bigtable = callPackage ../development/python-modules/google_cloud_bigtable { };
|
||||||
|
|
||||||
|
google_cloud_container = callPackage ../development/python-modules/google_cloud_container { };
|
||||||
|
|
||||||
google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };
|
google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };
|
||||||
|
|
||||||
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
|
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
|
||||||
|
Loading…
Reference in New Issue
Block a user