depot/third_party/nixpkgs/pkgs/development/python-modules/et-xmlfile/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

46 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitLab,
lxml,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "et-xmlfile";
version = "1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitLab {
domain = "foss.heptapod.net";
owner = "openpyxl";
repo = "et_xmlfile";
rev = version;
hash = "sha256-MJimcnYKujOL3FedGreNpuw1Jpg48ataDmFd1qwTS5A=";
};
nativeCheckInputs = [
lxml
pytestCheckHook
];
pythonImportsCheck = [ "et_xmlfile" ];
meta = with lib; {
description = "Implementation of lxml.xmlfile for the standard library";
longDescription = ''
et_xmlfile is a low memory library for creating large XML files.
It is based upon the xmlfile module from lxml with the aim of
allowing code to be developed that will work with both
libraries. It was developed initially for the openpyxl project
but is now a standalone module.
'';
homepage = "https://foss.heptapod.net/openpyxl/et_xmlfile";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}