mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
lpod: init -> 1.1.5
This commit is contained in:
parent
349e72ed55
commit
889936791d
1 changed files with 22 additions and 0 deletions
|
@ -5524,6 +5524,28 @@ in modules // {
|
|||
propagatedBuildInputs = with self; [ logilab_common ];
|
||||
};
|
||||
|
||||
lpod = buildPythonPackage rec {
|
||||
version = "1.1.5";
|
||||
name = "python-lpod-${version}";
|
||||
# lpod library currently does not support Python 3.x
|
||||
disabled = isPy3k;
|
||||
|
||||
propagatedBuildInputs = with self; [ ];
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "lpod";
|
||||
repo = "lpod-python";
|
||||
rev = "v${version}";
|
||||
sha256 = "1g909li511jkpcl26j1dzg8gn1ipkc374sh8vv54dx30sl0xfqxf";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/lpod/lpod-python/;
|
||||
description = "Library implementing the ISO/IEC 26300 OpenDocument Format standard (ODF) ";
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
};
|
||||
|
||||
mailchimp = buildPythonPackage rec {
|
||||
version = "2.0.9";
|
||||
name = "mailchimp-${version}";
|
||||
|
|
Loading…
Reference in a new issue