nixpkgs/pkgs/development/python-modules/pyexcel-io/default.nix
Jan Tojnar a2f49342d8 treewide: Reduce jtojnar maintainership
Notably fwupd, pipewire and flatpak.
I want to focus on GNOME and other packages I still actually use.
Pipewire is still important but I have not touched the packaging in a while.
2023-05-20 16:40:17 +02:00

35 lines
706 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, lml
, isPy3k
}:
buildPythonPackage rec {
pname = "pyexcel-io";
version = "0.6.6";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
hash = "sha256-9ghL8a+l+/TGHPffRDcPpROCGvGIsC4+GbXvtm2Klp8=";
};
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; [ ];
};
}