Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 34 lines 729 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, lml 5, isPy3k 6}: 7 8buildPythonPackage rec { 9 pname = "pyexcel-io"; 10 version = "0.6.4"; 11 12 disabled = !isPy3k; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "00f15f4bae2947de49b3206f2600f78780008e044380f7aafe0ce52969cda4ca"; 17 }; 18 19 propagatedBuildInputs = [ 20 lml 21 ]; 22 23 # Tests depend on stuff that depends on this. 24 doCheck = false; 25 26 pythonImportsCheck = [ "pyexcel_io" ]; 27 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; [ jtojnar ]; 33 }; 34}