python3.pkgs.pyexcel-io: init at 0.5.20
This commit is contained in:
parent
7e14da6138
commit
4bfca7c751
31
pkgs/development/python-modules/pyexcel-io/default.nix
Normal file
31
pkgs/development/python-modules/pyexcel-io/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, lml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyexcel-io";
|
||||
version = "0.5.20";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "CN/jlVO5ljWbFD3j2exD4ZbxE41HyrtzrwShaCG4TXk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
lml
|
||||
];
|
||||
|
||||
# Tests depend on stuff that depends on this.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyexcel_io" ];
|
||||
|
||||
meta = {
|
||||
description = "One interface to read and write the data in various excel formats, import the data into and export the data from databases";
|
||||
homepage = "http://docs.pyexcel.org/";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ jtojnar ];
|
||||
};
|
||||
}
|
@ -5576,6 +5576,8 @@ in {
|
||||
|
||||
pyenchant = callPackage ../development/python-modules/pyenchant { enchant2 = pkgs.enchant2; };
|
||||
|
||||
pyexcel-io = callPackage ../development/python-modules/pyexcel-io { };
|
||||
|
||||
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
|
||||
|
||||
pyext = callPackage ../development/python-modules/pyext { };
|
||||
|
Loading…
Reference in New Issue
Block a user