blob: 7f35a0becf91df2301bac11c259d2ffcbed316b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
ipython,
matplotlib,
numpy,
pandas,
}:
buildPythonPackage rec {
pname = "summarytools";
version = "0.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-m29ug+JZC4HgMIVopovA/dyR40Z1IcADOiDWKg9mzdc=";
};
build-system = [ setuptools ];
dependencies = [
ipython
matplotlib
numpy
pandas
];
pythonImportsCheck = [ "summarytools" ];
meta = {
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 = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|