depot/third_party/nixpkgs/pkgs/development/python-modules/proto-plus/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

33 lines
733 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, protobuf
, googleapis_common_protos
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "proto-plus";
version = "1.13.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1i5jjnwpd288378h37zads08h695iwmhxm0sxbr3ln6aax97rdb1";
};
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 ];
};
}