Unverified Commit 4a3a74e5 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents 81865a30 c8231006
Loading
Loading
Loading
Loading
+14 −7
Original line number Diff line number Diff line
@@ -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";
  };
}