blob: 36e33930d47d4d793da4806ff8863c9ca1e007ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pyxlsb";
version = "1.0.10";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-gGLR6oYm0/GYDosc/pGkSDdHRJJC7LYQE7wt+FQ19oU=";
};
# package has no tests
doCheck = false;
pythonImportsCheck = [ "pyxlsb" ];
meta = with lib; {
description = "Excel 2007-2010 Binary Workbook (xlsb) parser";
homepage = "https://github.com/willtrnr/pyxlsb";
license = licenses.lgpl3Plus;
};
}
|