29 lines
561 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-02-14 08:37:33 +01:00
, pytest
}:
buildPythonPackage rec {
pname = "xlrd";
2021-03-24 10:28:32 +01:00
version = "2.0.1";
src = fetchPypi {
inherit pname version;
2021-03-24 10:28:32 +01:00
sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88";
};
2019-02-14 08:37:33 +01:00
checkInputs = [ pytest ];
checkPhase = ''
2019-02-14 08:37:33 +01:00
py.test -k "not test_tilde_path_expansion"
'';
meta = with lib; {
homepage = "http://www.python-excel.org/";
description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
license = licenses.bsd0;
};
}