1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 lxml, 6 six, 7}: 8 9buildPythonPackage rec { 10 pname = "xml-marshaller"; 11 version = "1.0.2"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 pname = "xml_marshaller"; 16 inherit version; 17 hash = "sha256-QvBALLDD8o5nZQ5Z4bembhadK6jcydWKQpJaSmGqqJM="; 18 }; 19 20 propagatedBuildInputs = [ 21 lxml 22 six 23 ]; 24 25 pythonImportsCheck = [ "xml_marshaller" ]; 26 27 meta = with lib; { 28 description = "This module allows one to marshal simple Python data types into a custom XML format"; 29 homepage = "https://www.python.org/community/sigs/current/xml-sig/"; 30 license = licenses.psfl; 31 maintainers = with maintainers; [ mazurel ]; 32 }; 33}