Unverified Commit 0e3393d5 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.summarytools: 0.2.3 -> 0.3.0
parents 64cb1028 2423109d
Loading
Loading
Loading
Loading
+17 −15
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, ipython
, matplotlib
, numpy
, pandas
, pytestCheckHook
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  setuptools,
  ipython,
  matplotlib,
  numpy,
  pandas,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "summarytools";
  version = "0.2.3";
  version = "0.3.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  # no version tags in GitHub repo
  src = fetchPypi {
    inherit pname version;
    hash = "sha256-wsDf9IXCMQe0cVfQQuRVwMhxkhhUxbPu06yWZPLvgw4=";
    hash = "sha256-m29ug+JZC4HgMIVopovA/dyR40Z1IcADOiDWKg9mzdc=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    ipython
    matplotlib
    numpy
@@ -33,11 +33,13 @@ buildPythonPackage rec {
  ];

  nativeCheckImports = [ pytestCheckHook ];

  pythonImportsCheck = [ "summarytools" ];

  meta = with lib; {
    description = "Python port of the R summarytools package for summarizing dataframes";
    homepage = "https://github.com/6chaoran/jupyter-summarytools";
    changelog = "https://github.com/6chaoran/jupyter-summarytools/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ bcdarwin ];
  };