depot/third_party/nixpkgs/pkgs/development/python-modules/pyexcelerator/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 lines
628 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "pyexcelerator";
version = "0.6.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "18rcnc9f71lj06h8nppnv6idzb7xfmh2rp1zfqayskcg686lilrb";
};
disabled = isPy3k;
# No tests are included in archive
doCheck = false;
meta = with stdenv.lib; {
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 ];
};
}