pythonPackages.dash: 1.17.0 -> 1.19.0

master
Robert Schütz 2021-02-05 23:38:14 +01:00
parent 981058c66f
commit 256efaa7b1
1 changed files with 3 additions and 3 deletions

View File

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