ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / dict2xml / default.nix
bloba51ec5303cd2e41323a71e3b2eed77a44340147f
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "dict2xml";
9   version = "1.7.1";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-ZgCqMx8X7uODNhH3GJmkOnZhLKdVoVdpzyBJLEsaoBY=";
17   };
19   pythonImportsCheck = [
20     "dict2xml"
21   ];
23   meta = with lib; {
24     description = "Library to convert a Python dictionary into an XML string";
25     homepage = "https://github.com/delfick/python-dict2xml";
26     license = licenses.mit;
27     maintainers = with maintainers; [ johnazoidberg ];
28   };