1{ lib, fetchPypi, buildPythonPackage, six }:
2
3buildPythonPackage rec {
4 pname = "dict2xml";
5 version = "1.7.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0bfn8n8sb3slwx7ra8m8fbfy65k20h2qxcqfq99hwqrrkgcffihl";
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}