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