python312Packages.ydata-profiling: 4.12.1 -> 4.16.1 (#398267)

This commit is contained in:
Gaétan Lepage
2025-04-21 21:45:26 +02:00
committed by GitHub
@@ -20,6 +20,7 @@
requests,
scipy,
setuptools,
setuptools-scm,
seaborn,
statsmodels,
tqdm,
@@ -30,7 +31,7 @@
buildPythonPackage rec {
pname = "ydata-profiling";
version = "4.12.1";
version = "4.16.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -39,18 +40,23 @@ buildPythonPackage rec {
owner = "ydataai";
repo = "ydata-profiling";
tag = "v${version}";
hash = "sha256-K2axhkshKnJO8sKqSWW4AbdQXsVlR6xwuhRP3Q5J08E=";
hash = "sha256-gmMEW1aAwBar/xR22Wm98hbjP20ty3idvxfqCJ1uRGM=";
};
preBuild = ''
echo ${version} > VERSION
'';
build-system = [ setuptools ];
build-system = [
setuptools
setuptools-scm
];
pythonRelaxDeps = [
"imagehash"
"scipy"
"matplotlib"
"multimethod"
"numpy"
];
dependencies = [
@@ -69,6 +75,7 @@ buildPythonPackage rec {
requests
scipy
seaborn
setuptools
statsmodels
tqdm
typeguard
@@ -101,12 +108,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "ydata_profiling" ];
meta = with lib; {
meta = {
description = "Create HTML profiling reports from Pandas DataFrames";
homepage = "https://ydata-profiling.ydata.ai";
changelog = "https://github.com/ydataai/ydata-profiling/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
mainProgram = "ydata_profiling";
};
}