Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at r-updates 40 lines 825 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 ipython, 7 matplotlib, 8 numpy, 9 pandas, 10}: 11 12buildPythonPackage rec { 13 pname = "summarytools"; 14 version = "0.3.0"; 15 pyproject = true; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-m29ug+JZC4HgMIVopovA/dyR40Z1IcADOiDWKg9mzdc="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 dependencies = [ 25 ipython 26 matplotlib 27 numpy 28 pandas 29 ]; 30 31 pythonImportsCheck = [ "summarytools" ]; 32 33 meta = { 34 description = "Python port of the R summarytools package for summarizing dataframes"; 35 homepage = "https://github.com/6chaoran/jupyter-summarytools"; 36 changelog = "https://github.com/6chaoran/jupyter-summarytools/releases/tag/v${version}"; 37 license = lib.licenses.asl20; 38 maintainers = with lib.maintainers; [ bcdarwin ]; 39 }; 40}