pythonPackages.dict2xml: init at 1.6.1

This commit is contained in:
Daniel Schaefer 2019-09-14 16:36:06 +02:00 committed by Robin Gloster
parent a73937384e
commit d769048286
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, fetchPypi, buildPythonPackage, six }:
buildPythonPackage rec {
pname = "dict2xml";
version = "1.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "17wsybqq0916i1yh7bpf2cmicldn7d0y2b9mzlgs503fkcpxda5w";
};
propagatedBuildInputs = [ six ];
meta = with lib; {
description = "Super simple library to convert a Python dictionary into an xml string";
homepage = "https://github.com/delfick/python-dict2xml";
license = licenses.mit;
maintainers = with maintainers; [ johnazoidberg ];
};
}

View File

@ -5727,6 +5727,8 @@ in {
basemap = callPackage ../development/python-modules/basemap { };
dict2xml = callPackage ../development/python-modules/dict2xml { };
dicttoxml = callPackage ../development/python-modules/dicttoxml { };
markdown2 = callPackage ../development/python-modules/markdown2 { };