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