Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, sphinx 5, openpyxl 6}: 7 8buildPythonPackage rec { 9 pname = "sphinxcontrib-excel-table"; 10 version = "1.0.8"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256:1q79byn3k3ribvwqafbpixwabjhymk46ns8ym0hxcn8vhf5nljzd"; 15 }; 16 17 propagatedBuildInputs = [ sphinx openpyxl ]; 18 19 pythonImportsCheck = [ "sphinxcontrib.excel_table" ]; 20 21 # No tests present upstream 22 doCheck = false; 23 24 meta = with lib; { 25 description = "Sphinx excel-table extension"; 26 homepage = "https://github.com/hackerain/sphinxcontrib-excel-table"; 27 maintainers = with maintainers; [ raboof ]; 28 license = licenses.asl20; 29 }; 30}