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