about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xlwt/default.nix
blob: 12dfb75ce341010dd4256de9c2d4979da1fb7fc5 (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
47
48
49
{
  lib,
  buildPythonPackage,
  fetchPypi,
  nose,
  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 ];

  # tests rely on nose, archived in 2020
  doCheck = pythonOlder "3.12";

  nativeCheckInputs = [ nose ];

  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; [ ];
  };
}