1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 protobuf,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "protobuf3-to-dict";
11 version = "0.1.5";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0nibblvj3n20zvq6d73zalbjqjby0w8ji5mim7inhn7vb9dw4hhy";
17 };
18
19 doCheck = false;
20
21 pythonImportsCheck = [ "protobuf_to_dict" ];
22
23 propagatedBuildInputs = [
24 protobuf
25 six
26 ];
27
28 meta = with lib; {
29 description = "Teeny Python library for creating Python dicts from protocol buffers and the reverse";
30 homepage = "https://github.com/kaporzhu/protobuf-to-dict";
31 license = licenses.publicDomain;
32 maintainers = with maintainers; [ nequissimus ];
33 };
34}