linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / dict2xml / default.nix
blob457e9d3e530bd36881727227094b0d334beeef4f
1 { lib, fetchPypi, buildPythonPackage, six }:
3 buildPythonPackage rec {
4   pname = "dict2xml";
5   version = "1.7.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0bfn8n8sb3slwx7ra8m8fbfy65k20h2qxcqfq99hwqrrkgcffihl";
10   };
12   propagatedBuildInputs = [ six ];
14   meta = with lib; {
15     description = "Super simple library to convert a Python dictionary into an xml string";
16     homepage = "https://github.com/delfick/python-dict2xml";
17     license = licenses.mit;
18     maintainers = with maintainers; [ johnazoidberg ];
19   };