ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / xmltodict / default.nix
blob19c2b1d283f6a40d08230bbc3ea864fe4e24e023
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "xmltodict";
10   version = "0.13.0";
11   format = "setuptools";
12   disabled = pythonOlder "3.4";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-NBWVpIjj4BqFqdiRHYkS/ZIu3l/sxNzkN+tLbI0DflY=";
17   };
19   checkInputs = [
20     pytestCheckHook
21   ];
23   pythonImportsCheck = [ "xmltodict" ];
25   meta = with lib; {
26     description = "Makes working with XML feel like you are working with JSON";
27     homepage = "https://github.com/martinblech/xmltodict";
28     license = licenses.mit;
29     maintainers = with maintainers; [ SuperSandro2000 ];
30   };