fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
25 lines
519 B
Nix
25 lines
519 B
Nix
{
|
|
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;
|
|
};
|
|
}
|