mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
36 lines
771 B
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 = [ ];
|
|
};
|
|
}
|