Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 39 lines 705 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, bokeh 5, param 6, pyviz-comms 7, markdown 8, pyct 9, testpath 10}: 11 12buildPythonPackage rec { 13 pname = "panel"; 14 version = "0.7.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "71d446f469b424cb190bc896e78d0415b2bbebf17c6e5b024ed1a73b4448f8f4"; 19 }; 20 21 propagatedBuildInputs = [ 22 bokeh 23 param 24 pyviz-comms 25 markdown 26 pyct 27 testpath 28 ]; 29 30 # infinite recursion in test dependencies (hvplot) 31 doCheck = false; 32 33 meta = with lib; { 34 description = "A high level dashboarding library for python visualization libraries"; 35 homepage = https://pyviz.org; 36 license = licenses.bsd3; 37 maintainers = [ maintainers.costrouc ]; 38 }; 39}