depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-os-config/default.nix
Default email f61cd259d4 Project import generated by Copybara.
GitOrigin-RevId: 82155ff501c7622cb2336646bb62f7624261f6d7
2021-10-01 17:20:50 +08:00

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.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "4dc498d6fede223049c415f301ba1129ecaf628f31a77ae87d2678e6d71556f6";
};
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 ];
};
}