1{ lib, fetchPypi, buildPythonPackage, six }:
2
3buildPythonPackage rec {
4 pname = "dict2xml";
5 version = "1.6.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "17wsybqq0916i1yh7bpf2cmicldn7d0y2b9mzlgs503fkcpxda5w";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 meta = with lib; {
15 description = "Super simple library to convert a Python dictionary into an xml string";
16 homepage = "https://github.com/delfick/python-dict2xml";
17 license = licenses.mit;
18 maintainers = with maintainers; [ johnazoidberg ];
19 };
20}