Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / protobuf3-to-dict / default.nix
blob4160f7760a0c4091891fa3cbe3d9fca136c7a5da
1 { lib, buildPythonPackage, fetchPypi, protobuf, six }:
3 buildPythonPackage rec {
4   pname = "protobuf3-to-dict";
5   version = "0.1.5";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0nibblvj3n20zvq6d73zalbjqjby0w8ji5mim7inhn7vb9dw4hhy";
11   };
13   doCheck = false;
15   pythonImportsCheck = [ "protobuf_to_dict" ];
17   propagatedBuildInputs = [ protobuf six ];
19   meta = with lib; {
20     description = "A teeny Python library for creating Python dicts from protocol buffers and the reverse";
21     homepage = "https://github.com/kaporzhu/protobuf-to-dict";
22     license = licenses.publicDomain;
23     maintainers = with maintainers; [ nequissimus ];
24   };