pythonPackages.xml-marshaller: init at 1.0.2

This commit is contained in:
Mazurel 2021-08-06 16:39:35 +02:00 committed by Jonathan Ringer
parent 40fbf5a5ca
commit 5452fbfa86
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildPythonPackage
, fetchPypi
, lib
, lxml
, six
}:
buildPythonPackage rec {
pname = "xml-marshaller";
version = "1.0.2";
src = fetchPypi {
inherit version;
pname = "xml_marshaller";
sha256 = "sha256-QvBALLDD8o5nZQ5Z4bembhadK6jcydWKQpJaSmGqqJM=";
};
propagatedBuildInputs = [ lxml six ];
meta = with lib; {
description = "This module allows one to marshal simple Python data types into a custom XML format.";
homepage = "https://www.python.org/community/sigs/current/xml-sig/";
license = licenses.psfl;
maintainers = with maintainers; [ mazurel ];
};
}

View file

@ -9429,6 +9429,8 @@ in {
xmltodict = callPackage ../development/python-modules/xmltodict { };
xml-marshaller = callPackage ../development/python-modules/xml-marshaller { };
xmodem = callPackage ../development/python-modules/xmodem { };
xnd = callPackage ../development/python-modules/xnd { };