nixpkgs/pkgs/development/python-modules/pyexcel-io/default.nix

36 lines
771 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
lml,
}:
buildPythonPackage rec {
pname = "pyexcel-io";
version = "0.6.7.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pyexcel";
repo = "pyexcel-io";
tag = "v${version}";
hash = "sha256-DBiHHiKXR26/WPJDmEZpRgjvJitFaidbV41Tvn0etLY=";
};
build-system = [ setuptools ];
dependencies = [ 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 = [ ];
};
}