2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
lib,
|
|
|
|
lxml,
|
|
|
|
six,
|
2021-08-08 23:34:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "xml-marshaller";
|
|
|
|
version = "1.0.2";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2021-08-08 23:34:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "xml_marshaller";
|
|
|
|
inherit version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-QvBALLDD8o5nZQ5Z4bembhadK6jcydWKQpJaSmGqqJM=";
|
2021-08-08 23:34:03 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
lxml
|
|
|
|
six
|
|
|
|
];
|
2021-08-08 23:34:03 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "xml_marshaller" ];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|