linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / protobuf3-to-dict / default.nix
blobffc21c1428fe1459230bdfb932839bfc41ad9865
1 { lib, buildPythonPackage, fetchPypi, protobuf, six }:
3 buildPythonPackage rec {
4   pname = "protobuf3-to-dict";
5   version = "0.1.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0nibblvj3n20zvq6d73zalbjqjby0w8ji5mim7inhn7vb9dw4hhy";
10   };
12   doCheck = false;
14   pythonImportsCheck = [ "protobuf_to_dict" ];
16   propagatedBuildInputs = [ protobuf six ];
18   meta = with lib; {
19     description = "A teeny Python library for creating Python dicts from protocol buffers and the reverse";
20     homepage = "https://github.com/kaporzhu/protobuf-to-dict";
21     license = licenses.publicDomain;
22     maintainers = with maintainers; [ nequissimus ];
23   };