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