pythonPackages.googleapis-common-protos: normalise package name

This commit is contained in:
Sandro Jäckel
2021-03-05 16:20:42 +01:00
parent 01e50d1136
commit ba5b0e2445
5 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, grpc
, protobuf
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "googleapis-common-protos";
version = "1.52.0";
src = fetchPypi {
inherit pname version;
sha256 = "0lakcsd35qm5x4visvw6z5f1niasv9a0mjyf2bd98wqi0z41c1sn";
};
propagatedBuildInputs = [ grpc protobuf ];
# does not contain tests
doCheck = false;
pythonImportsCheck = [
"google.api"
"google.logging"
"google.longrunning"
"google.rpc"
"google.type"
];
meta = with lib; {
description = "Common protobufs used in Google APIs";
homepage = "https://github.com/googleapis/python-api-common-protos";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}