summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyexcelerator/default.nix
blob: 3738850739490c41254edeb7c37830d2f4f7a4c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, 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 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 ];
  };

}