mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
pythonPackages.google_cloud_runtimeconfig: init at 0.28.1
This commit is contained in:
parent
4171715886
commit
8810a026c3
@ -0,0 +1,32 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, google_api_core
|
||||
, google_cloud_core
|
||||
, pytest
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-runtimeconfig";
|
||||
version = "0.28.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f441fbc22e2d0871ecb390854aa352cf467d2751cbc0dac7578274ead813519e";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
propagatedBuildInputs = [ google_api_core google_cloud_core ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest tests/unit
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Google Cloud RuntimeConfig API client library";
|
||||
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -2484,6 +2484,8 @@ in {
|
||||
|
||||
google_cloud_resource_manager = callPackage ../development/python-modules/google_cloud_resource_manager { };
|
||||
|
||||
google_cloud_runtimeconfig = callPackage ../development/python-modules/google_cloud_runtimeconfig { };
|
||||
|
||||
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
|
||||
|
||||
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
|
||||
|
Loading…
Reference in New Issue
Block a user