pythonPackages.dash: 1.17.0 -> 1.19.0

This commit is contained in:
Robert Schütz 2021-02-05 23:38:14 +01:00
parent 981058c66f
commit 256efaa7b1

View file

@ -16,13 +16,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dash"; pname = "dash";
version = "1.17.0"; version = "1.19.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "plotly"; owner = "plotly";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1fbnhpmkxavv6yirmhx7659q1y9bqynwjd1g6cscv1mfv9m59l60"; sha256 = "067ipkp186h26j7whfid8hjf6cwjmw2b5jp6fvvg280j7q9bjsa9";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -43,7 +43,7 @@ buildPythonPackage rec {
]; ];
checkPhase = '' checkPhase = ''
pytest tests/unit/test_{configs,fingerprint,import,resources}.py \ pytest tests/unit/test_{configs,fingerprint,resources}.py \
tests/unit/dash/ tests/unit/dash/
''; '';