1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "dicttoxml";
9 version = "1.7.16";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-bzbOZEiB21zYlAvum3yz8/a3sye6imfYPT4sqgU4v50=";
15 };
16
17 # No tests in archive
18 doCheck = false;
19
20 meta = {
21 description = "Converts a Python dictionary or other native data type into a valid XML string";
22 homepage = "https://github.com/quandyfactory/dicttoxml";
23 license = lib.licenses.gpl2;
24 };
25}