python3Packages.panel: 0.7.0 -> 0.8.3

A newer version is available but requires bokeh >= 2.
See https://github.com/NixOS/nixpkgs/pull/85758 for WIP bokeh PR.
This commit is contained in:
Frederik Rietdijk 2020-04-24 12:08:41 +02:00
parent 0d99474a9b
commit 2058aeba20

View File

@ -7,15 +7,16 @@
, markdown , markdown
, pyct , pyct
, testpath , testpath
, tqdm
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "panel"; pname = "panel";
version = "0.7.0"; version = "0.8.3";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "71d446f469b424cb190bc896e78d0415b2bbebf17c6e5b024ed1a73b4448f8f4"; sha256 = "0iz20k7mqn0560r4358yrzvrrfn00h8s6dim7p7y4icpgjw2mjnb";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -25,6 +26,7 @@ buildPythonPackage rec {
markdown markdown
pyct pyct
testpath testpath
tqdm
]; ];
# infinite recursion in test dependencies (hvplot) # infinite recursion in test dependencies (hvplot)