Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyexcel-io / default.nix
blobf20e44b1f8d9045f2eab05aa65fd972fd105ba7c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , lml
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "pyexcel-io";
10   version = "0.6.6";
12   disabled = !isPy3k;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-9ghL8a+l+/TGHPffRDcPpROCGvGIsC4+GbXvtm2Klp8=";
17   };
19   propagatedBuildInputs = [
20     lml
21   ];
23   # Tests depend on stuff that depends on this.
24   doCheck = false;
26   pythonImportsCheck = [ "pyexcel_io" ];
28   meta = {
29     description = "One interface to read and write the data in various excel formats, import the data into and export the data from databases";
30     homepage = "http://docs.pyexcel.org/";
31     license = lib.licenses.bsd3;
32     maintainers = with lib.maintainers; [ ];
33   };