6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
29 lines
829 B
Nix
29 lines
829 B
Nix
{ lib, buildPythonPackage, fetchPypi, google-api-core, libcst, mock, proto-plus, pytestCheckHook, pytest-asyncio }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-os-config";
|
|
version = "1.6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "204ecbe480e5e5abc17752ac2ac17877e0325f31ed7e57f019724c3041ecc1fa";
|
|
};
|
|
|
|
propagatedBuildInputs = [ google-api-core libcst proto-plus ];
|
|
|
|
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
|
|
|
|
pythonImportsCheck = [ "google.cloud.osconfig" ];
|
|
|
|
disabledTests = [
|
|
"test_patch_deployment"
|
|
"test_patch_job"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Google Cloud OS Config API client library";
|
|
homepage = "https://github.com/googleapis/python-os-config";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|