depot/third_party/nixpkgs/pkgs/development/python-modules/proto-plus/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08: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 ];
};
}