depot/third_party/nixpkgs/pkgs/development/python-modules/proto-plus/default.nix
Default email bba55970ba Project import generated by Copybara.
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
2021-04-05 17:23:46 +02:00

33 lines
732 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, protobuf
, googleapis-common-protos
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "proto-plus";
version = "1.18.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-z8RUdMftoP48S57KJUISTyoP9VQyQr7GHo0IvOD1vUg=";
};
propagatedBuildInputs = [ protobuf ];
checkInputs = [ pytestCheckHook pytz googleapis-common-protos ];
pythonImportsCheck = [ "proto" ];
meta = with lib; {
description = "Beautiful, idiomatic protocol buffers in Python";
homepage = "https://github.com/googleapis/proto-plus-python";
license = licenses.asl20;
maintainers = with maintainers; [ ruuda SuperSandro2000 ];
};
}