python2Packages.lpod: remove

This commit is contained in:
Robert Schütz 2022-06-06 19:23:30 +00:00
parent f9c76fbaec
commit e5dcb4efd2
2 changed files with 0 additions and 33 deletions

View File

@ -1,31 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, lxml
, docutils
, pillow
, isPy3k
}:
buildPythonPackage {
version = "1.1.7";
pname = "python-lpod";
# lpod library currently does not support Python 3.x
disabled = isPy3k;
propagatedBuildInputs = [ lxml docutils pillow ];
src = fetchFromGitHub {
owner = "lpod";
repo = "lpod-python";
rev = "dee32120ee582ff337b0c52a95a9a87cca71fd67";
sha256 = "1mikvzp27wxkzpr2lii4wg1hhx8h610agckqynvsrdc8v3nw9ciw";
};
meta = with lib; {
homepage = "https://github.com/lpod/lpod-python/";
description = "Library implementing the ISO/IEC 26300 OpenDocument Format standard (ODF) ";
license = licenses.gpl3;
};
}

View File

@ -46,8 +46,6 @@ with self; with super; {
jinja2 = callPackage ../development/python2-modules/jinja2 { };
lpod = callPackage ../development/python2-modules/lpod { };
marisa = callPackage ../development/python2-modules/marisa {
inherit (pkgs) marisa;
};