python3.pkgs.pyexcel-xsl: init at 0.5.8
This commit is contained in:
parent
cadb4676c6
commit
9357dfc299
37
pkgs/development/python-modules/pyexcel-xls/default.nix
Normal file
37
pkgs/development/python-modules/pyexcel-xls/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pyexcel-io
|
||||
, xlrd
|
||||
, xlwt
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyexcel-xls";
|
||||
version = "0.5.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "LTPrS9ja37jHO1zMaiONZbORTomnVTsfObk5exfL5AI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyexcel-io
|
||||
xlrd
|
||||
xlwt
|
||||
];
|
||||
|
||||
# Tests are not included in the archive.
|
||||
# https://github.com/pyexcel/pyexcel-xls/issues/35
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyexcel_xls" ];
|
||||
|
||||
meta = {
|
||||
description = "A wrapper library to read, manipulate and write data in xls using xlrd and xlwt";
|
||||
homepage = "http://docs.pyexcel.org/";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ jtojnar ];
|
||||
};
|
||||
}
|
@ -5580,6 +5580,8 @@ in {
|
||||
|
||||
pyexcel-io = callPackage ../development/python-modules/pyexcel-io { };
|
||||
|
||||
pyexcel-xls = callPackage ../development/python-modules/pyexcel-xls { };
|
||||
|
||||
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
|
||||
|
||||
pyext = callPackage ../development/python-modules/pyext { };
|
||||
|
Loading…
Reference in New Issue
Block a user