Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyxlsb / default.nix
blobdf000db7e25df3e1246cb84aeb44b304ce78fdbd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pyxlsb";
8   version = "1.0.10";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-gGLR6oYm0/GYDosc/pGkSDdHRJJC7LYQE7wt+FQ19oU=";
14   };
16   # package has no tests
17   doCheck = false;
18   pythonImportsCheck = [ "pyxlsb" ];
20   meta = with lib; {
21     description = "Excel 2007-2010 Binary Workbook (xlsb) parser";
22     homepage = "https://github.com/willtrnr/pyxlsb";
23     license = licenses.lgpl3Plus;
24     maintainers = with maintainers; [ elohmeier ];
25   };