Commit 2423109d authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.summarytools: format with nixfmt

parent 07ef71ef
Loading
Loading
Loading
Loading
+14 −19
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 {
@@ -22,9 +23,7 @@ buildPythonPackage rec {
    hash = "sha256-m29ug+JZC4HgMIVopovA/dyR40Z1IcADOiDWKg9mzdc=";
  };

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

  dependencies = [
    ipython
@@ -33,13 +32,9 @@ buildPythonPackage rec {
    pandas
  ];

  nativeCheckImports = [
    pytestCheckHook
  ];
  nativeCheckImports = [ pytestCheckHook ];

  pythonImportsCheck = [
    "summarytools"
  ];
  pythonImportsCheck = [ "summarytools" ];

  meta = with lib; {
    description = "Python port of the R summarytools package for summarizing dataframes";