Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 41 lines 723 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pyexcel-io 5, odfpy 6, nose 7, pyexcel 8, pyexcel-xls 9, psutil 10}: 11 12buildPythonPackage rec { 13 pname = "pyexcel-ods"; 14 version = "0.5.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "O+Uv2KrdvYvJKG9+sUj0VT1MlyUtaVw6nse5XmZmoiM="; 19 }; 20 21 propagatedBuildInputs = [ 22 pyexcel-io 23 odfpy 24 ]; 25 26 checkInputs = [ 27 nose 28 pyexcel 29 pyexcel-xls 30 psutil 31 ]; 32 33 checkPhase = "nosetests"; 34 35 meta = { 36 description = "Plug-in to pyexcel providing the capbility to read, manipulate and write data in ods formats using odfpy"; 37 homepage = "http://docs.pyexcel.org/"; 38 license = lib.licenses.bsd3; 39 maintainers = with lib.maintainers; [ jtojnar ]; 40 }; 41}