linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / xlrd / default.nix
blobd880fd833965649002f5de2e200bf47963b55fa9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "xlrd";
9   version = "1.2.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "546eb36cee8db40c3eaa46c351e67ffee6eeb5fa2650b71bc4c758a29a1b29b2";
14   };
16   checkInputs = [ pytest ];
18   checkPhase = ''
19     py.test -k "not test_tilde_path_expansion"
20   '';
22   meta = with lib; {
23     homepage = "http://www.python-excel.org/";
24     description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
25     license = licenses.bsd0;
26   };