132 lines
2.3 KiB
Nix
132 lines
2.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
|
|
, setuptools
|
|
, nodejs
|
|
, yarn
|
|
, prefetch-yarn-deps
|
|
, fetchYarnDeps
|
|
|
|
, flask
|
|
, werkzeug
|
|
, plotly
|
|
, dash-html-components
|
|
, dash-core-components
|
|
, dash-table
|
|
, importlib-metadata
|
|
, typing-extensions
|
|
, requests
|
|
, retrying
|
|
, nest-asyncio
|
|
|
|
, celery
|
|
, redis
|
|
, diskcache
|
|
, multiprocess
|
|
, psutil
|
|
, flask-compress
|
|
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
, mock
|
|
, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dash";
|
|
version = "2.15.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "plotly";
|
|
repo = "dash";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-38BOw/CrauT/usVWCI735J0zRf9wzScUgbfGTy5B7ng=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
nodejs
|
|
yarn
|
|
prefetch-yarn-deps
|
|
];
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
yarnLock = "${src}/@plotly/dash-jupyterlab/yarn.lock";
|
|
hash = "sha256-mkiyrA0jGiP0zbabSjgHFLEUX3f+LZdJ8eARI5QA8CU=";
|
|
};
|
|
|
|
preBuild = ''
|
|
pushd @plotly/dash-jupyterlab
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
yarn config --offline set yarn-offline-mirror ${yarnOfflineCache}
|
|
fixup-yarn-lock yarn.lock
|
|
|
|
substituteInPlace package.json --replace jlpm yarn
|
|
yarn install --offline --frozen-lockfile --ignore-engines --ignore-scripts
|
|
patchShebangs node_modules
|
|
|
|
# Generates the jupyterlab extension files
|
|
yarn run build:pack
|
|
|
|
popd
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
flask
|
|
werkzeug
|
|
plotly
|
|
dash-html-components
|
|
dash-core-components
|
|
dash-table
|
|
importlib-metadata
|
|
typing-extensions
|
|
requests
|
|
retrying
|
|
nest-asyncio
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
celery = [
|
|
celery
|
|
redis
|
|
];
|
|
diskcache = [
|
|
diskcache
|
|
multiprocess
|
|
psutil
|
|
];
|
|
compress = [
|
|
flask-compress
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
mock
|
|
pyyaml
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/unit/test_browser.py"
|
|
"tests/unit/test_app_runners.py" # Uses selenium
|
|
"tests/integration"
|
|
];
|
|
|
|
pythonImportsCheck = [ "dash" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/plotly/dash/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Python framework for building analytical web applications";
|
|
homepage = "https://dash.plot.ly/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ antoinerg tomasajt ];
|
|
};
|
|
}
|