about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xlwt/default.nix
blob: b47a5c4e3cddbfd1481dff85078fa0b7b6270c3b (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pynose,
  setuptools,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "xlwt";
  version = "1.3.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-xZkScXqbKPGjwqmP1gdBAUsGsEOTbc7LwRPqqtoVbIg=";
  };

  build-system = [ setuptools ];

  nativeCheckInputs = [ pynose ];

  checkPhase = ''
    runHook preCheck

    nosetests -v

    runHook postCheck
  '';

  pythonImportsCheck = [ "xlwt" ];

  meta = with lib; {
    description = "Library to create spreadsheet files compatible with MS";
    homepage = "https://github.com/python-excel/xlwt";
    license = with licenses; [
      bsdOriginal
      bsd3
      lgpl21Plus
    ];
    maintainers = with maintainers; [ ];
  };
}