pythonPackages.google_cloud_iam: Rename to fit other packages, cleanup

This commit is contained in:
Sandro Jäckel
2021-01-05 10:52:31 +01:00
parent 9711439698
commit cb58e7539f
2 changed files with 20 additions and 5 deletions

View File

@@ -1,22 +0,0 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
, google_api_core, libcst, mock, proto-plus, pytest-asyncio }:
buildPythonPackage rec {
pname = "google-cloud-iam";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1zxsx5avs8njiyw32zvsx2yblmmiwxy771x334hbgmy0aqms4lak";
};
propagatedBuildInputs = [ google_api_core libcst proto-plus ];
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
meta = with lib; {
description = "Google Cloud IAM API client library";
homepage = "https://github.com/googleapis/python-iam";
license = licenses.asl20;
maintainers = with maintainers; [ austinbutler ];
};
}