mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
python311Packages.summarytools: format with nixfmt
This commit is contained in:
parent
07ef71ef0b
commit
2423109d7f
@ -1,13 +1,14 @@
|
||||
{ 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";
|
||||
|
Loading…
Reference in New Issue
Block a user