nixpkgs/pkgs/development/python-modules/dash/default.nix

61 lines
1 KiB
Nix
Raw Normal View History

2020-01-17 18:26:11 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, plotly
, flask
, flask-compress
, future
, dash-core-components
, dash-renderer
, dash-html-components
, dash-table
, pytest
, pytest-mock
, mock
}:
buildPythonPackage rec {
pname = "dash";
2021-02-05 22:38:14 +00:00
version = "1.19.0";
2020-01-17 18:26:11 +00:00
src = fetchFromGitHub {
owner = "plotly";
repo = pname;
rev = "v${version}";
2021-02-05 22:38:14 +00:00
sha256 = "067ipkp186h26j7whfid8hjf6cwjmw2b5jp6fvvg280j7q9bjsa9";
2020-01-17 18:26:11 +00:00
};
propagatedBuildInputs = [
plotly
flask
flask-compress
future
dash-core-components
dash-renderer
dash-html-components
dash-table
];
checkInputs = [
pytest
pytest-mock
mock
];
checkPhase = ''
2021-02-05 22:38:14 +00:00
pytest tests/unit/test_{configs,fingerprint,resources}.py \
2020-03-02 07:26:41 +00:00
tests/unit/dash/
2020-01-17 18:26:11 +00:00
'';
pythonImportsCheck = [
"dash"
];
meta = with lib; {
description = "Python framework for building analytical web applications";
2020-03-02 07:26:41 +00:00
homepage = "https://dash.plot.ly/";
license = licenses.mit;
maintainers = [ maintainers.antoinerg ];
2020-01-17 18:26:11 +00:00
};
}