nixpkgs/pkgs/development/python-modules/proto-plus/default.nix
2021-10-04 23:47:05 +02:00

34 lines
732 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, protobuf
, googleapis-common-protos
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "proto-plus";
version = "1.19.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ylMLBxjGJbpj8VGrP83INrWTQ9FJt9/RXsLc6zhEwi0=";
};
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 ];
};
}