depot/third_party/nixpkgs/pkgs/development/python-modules/ydata-profiling/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

107 lines
1.8 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, dacite
, htmlmin
, imagehash
, jinja2
, matplotlib
, multimethod
, numba
, numpy
, pandas
, phik
, pyarrow
, pydantic
, pyyaml
, requests
, scipy
, seaborn
, statsmodels
, tqdm
, typeguard
, visions
, wordcloud
}:
buildPythonPackage rec {
pname = "ydata-profiling";
version = "4.10.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ydataai";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-uB8E7qp1xohAdcIIt1T2DxwSu93XhJoI8/qn54fSvGY=";
};
preBuild = ''
echo ${version} > VERSION
'';
pythonRelaxDeps = [
"scipy"
];
propagatedBuildInputs = [
dacite
htmlmin
imagehash
jinja2
matplotlib
multimethod
numba
numpy
pandas
phik
pydantic
pyyaml
requests
scipy
seaborn
statsmodels
tqdm
typeguard
visions
wordcloud
];
nativeCheckInputs = [
pytestCheckHook
pyarrow
];
disabledTestPaths = [
# needs Spark:
"tests/backends/spark_backend"
# try to download data:
"tests/issues"
"tests/unit/test_console.py"
"tests/unit/test_dataset_schema.py"
"tests/unit/test_modular.py"
];
disabledTests = [
# try to download data:
"test_decorator"
"test_example"
"test_load"
"test_urls"
];
pythonImportsCheck = [
"ydata_profiling"
];
meta = with lib; {
description = "Create HTML profiling reports from Pandas DataFrames";
homepage = "https://ydata-profiling.ydata.ai";
changelog = "https://github.com/ydataai/ydata-profiling/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
mainProgram = "ydata_profiling";
};
}