13 buildPythonPackage rec {
14 pname = "summarytools";
18 disabled = pythonOlder "3.7";
20 # no version tags in GitHub repo
22 inherit pname version;
23 hash = "sha256-wsDf9IXCMQe0cVfQQuRVwMhxkhhUxbPu06yWZPLvgw4=";
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [
35 nativeCheckImports = [ pytestCheckHook ];
36 pythonImportsCheck = [ "summarytools" ];
39 description = "Python port of the R summarytools package for summarizing dataframes";
40 homepage = "https://github.com/6chaoran/jupyter-summarytools";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ bcdarwin ];