1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.pyexcelerator: init at 0.6.4.1

This commit is contained in:
Kranium Gikos Mendoza 2016-06-07 00:15:35 +08:00 committed by Frederik Rietdijk
parent 12c055240d
commit 851cd1e6af

View file

@ -17871,6 +17871,27 @@ in modules // {
};
};
pyexcelerator = buildPythonPackage rec {
name = "pyexcelerator-${version}";
version = "0.6.4.1";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pyexcelerator/${name}.tar.bz2";
sha256 = "18rcnc9f71lj06h8nppnv6idzb7xfmh2rp1zfqayskcg686lilrb";
};
disabled = isPy3k;
# No tests are included in archive
doCheck = false;
meta = {
description = "library for generating Excel 97/2000/XP/2003 and OpenOffice Calc compatible spreadsheets.";
homepage = "https://sourceforge.net/projects/pyexcelerator";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ womfoo ];
};
};
pyfeed = buildPythonPackage rec {
url = "http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz";