1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "xlrd";
9 version = "2.0.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88";
14 };
15
16 nativeCheckInputs = [
17 pytestCheckHook
18 ];
19
20 # No tests in archive
21 doCheck = false;
22
23 meta = with lib; {
24 homepage = "https://www.python-excel.org/";
25 description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
26 license = licenses.bsd0;
27 };
28
29}