python310Packages.xmltodict: 0.12.0 -> 0.13.0

This commit is contained in:
Sandro Jäckel 2022-06-01 23:46:34 +02:00 committed by Jonathan Ringer
parent 8842868bf3
commit 9a7c0666da
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -2,22 +2,26 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "xmltodict";
version = "0.12.0";
version = "0.13.0";
format = "setuptools";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
sha256 = "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21";
sha256 = "sha256-NBWVpIjj4BqFqdiRHYkS/ZIu3l/sxNzkN+tLbI0DflY=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "xmltodict" ];
meta = with lib; {
description = "Makes working with XML feel like you are working with JSON";
homepage = "https://github.com/martinblech/xmltodict";