Merge pull request #312594 from r-ryantm/auto-update/python311Packages.summarytools

python311Packages.summarytools: 0.2.3 -> 0.3.0

authored by Fabian Affolter and committed by GitHub 0e3393d5 64cb1028

+17 -15
+17 -15
pkgs/development/python-modules/summarytools/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pythonOlder 5 - , setuptools 6 - , ipython 7 - , matplotlib 8 - , numpy 9 - , pandas 10 - , pytestCheckHook 11 }: 12 13 buildPythonPackage rec { 14 pname = "summarytools"; 15 - version = "0.2.3"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; 19 20 - # no version tags in GitHub repo 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-wsDf9IXCMQe0cVfQQuRVwMhxkhhUxbPu06yWZPLvgw4="; 24 }; 25 26 - nativeBuildInputs = [ setuptools ]; 27 28 - propagatedBuildInputs = [ 29 ipython 30 matplotlib 31 numpy ··· 33 ]; 34 35 nativeCheckImports = [ pytestCheckHook ]; 36 pythonImportsCheck = [ "summarytools" ]; 37 38 meta = with lib; { 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 ]; 43 };
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + pythonOlder, 6 + setuptools, 7 + ipython, 8 + matplotlib, 9 + numpy, 10 + pandas, 11 + pytestCheckHook, 12 }: 13 14 buildPythonPackage rec { 15 pname = "summarytools"; 16 + version = "0.3.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-m29ug+JZC4HgMIVopovA/dyR40Z1IcADOiDWKg9mzdc="; 24 }; 25 26 + build-system = [ setuptools ]; 27 28 + dependencies = [ 29 ipython 30 matplotlib 31 numpy ··· 33 ]; 34 35 nativeCheckImports = [ pytestCheckHook ]; 36 + 37 pythonImportsCheck = [ "summarytools" ]; 38 39 meta = with lib; { 40 description = "Python port of the R summarytools package for summarizing dataframes"; 41 homepage = "https://github.com/6chaoran/jupyter-summarytools"; 42 + changelog = "https://github.com/6chaoran/jupyter-summarytools/releases/tag/v${version}"; 43 license = licenses.asl20; 44 maintainers = with maintainers; [ bcdarwin ]; 45 };