anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / protobuf3-to-dict / default.nix
blobe613c1d23eb28d0658353ad601b45b2bcd73c687
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   protobuf,
6   six,
7 }:
9 buildPythonPackage rec {
10   pname = "protobuf3-to-dict";
11   version = "0.1.5";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "0nibblvj3n20zvq6d73zalbjqjby0w8ji5mim7inhn7vb9dw4hhy";
17   };
19   doCheck = false;
21   pythonImportsCheck = [ "protobuf_to_dict" ];
23   propagatedBuildInputs = [
24     protobuf
25     six
26   ];
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   };