1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pyxlsb"; 8 version = "1.0.10"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-gGLR6oYm0/GYDosc/pGkSDdHRJJC7LYQE7wt+FQ19oU="; 14 }; 15 16 # package has no tests 17 doCheck = false; 18 pythonImportsCheck = [ "pyxlsb" ]; 19 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 }; 26}