summary refs log tree commit diff
path: root/pkgs/development/python-modules/xlrd/default.nix
blob: 9b5e8b83e30663316e96b772d4443a21793bb716 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "xlrd";
  version = "1.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "546eb36cee8db40c3eaa46c351e67ffee6eeb5fa2650b71bc4c758a29a1b29b2";
  };

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test -k "not test_tilde_path_expansion"
  '';

  meta = with stdenv.lib; {
    homepage = "http://www.python-excel.org/";
    description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
    license = licenses.bsd0;
  };

}