Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / xlrd / default.nix
blobce17ca1502ad0bb773b2c35b864fddb00436f474
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "xlrd";
9   version = "2.0.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88";
15   };
17   nativeCheckInputs = [
18     pytestCheckHook
19   ];
21   # No tests in archive
22   doCheck = false;
24   meta = with lib; {
25     homepage = "https://www.python-excel.org/";
26     description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
27     mainProgram = "runxlrd.py";
28     license = licenses.bsd0;
29   };