nixpkgs/pkgs/development/python-modules/xlrd/default.nix

29 lines
569 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2019-02-14 07:37:33 +00:00
, pytest
}:
buildPythonPackage rec {
pname = "xlrd";
2019-02-14 07:37:33 +00:00
version = "1.2.0";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:33 +00:00
sha256 = "546eb36cee8db40c3eaa46c351e67ffee6eeb5fa2650b71bc4c758a29a1b29b2";
};
2019-02-14 07:37:33 +00:00
checkInputs = [ pytest ];
checkPhase = ''
2019-02-14 07:37:33 +00:00
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;
};
}