Merge pull request #247906 from elohmeier/pyxlsb
python3Packages.pyxlsb: init at 1.0.10
This commit is contained in:
commit
2e516d526c
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/pyxlsb/default.nix
Normal file
26
pkgs/development/python-modules/pyxlsb/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
maintainers = with maintainers; [ elohmeier ];
|
||||
};
|
||||
}
|
|
@ -10718,6 +10718,8 @@ self: super: with self; {
|
|||
|
||||
pyxattr = callPackage ../development/python-modules/pyxattr { };
|
||||
|
||||
pyxlsb = callPackage ../development/python-modules/pyxlsb { };
|
||||
|
||||
pyworld = callPackage ../development/python-modules/pyworld { };
|
||||
|
||||
pyx = callPackage ../development/python-modules/pyx { };
|
||||
|
|
Loading…
Reference in a new issue