1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytz 5, requests 6, six 7, tenacity 8}: 9 10buildPythonPackage rec { 11 pname = "plotly"; 12 version = "5.10.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "sha256-TTbZhZt6FTsnNWLe7tjCklh6Ry6x/VfNQVjsidne+ts="; 17 }; 18 19 propagatedBuildInputs = [ 20 pytz 21 requests 22 six 23 tenacity 24 ]; 25 26 # No tests in archive 27 doCheck = false; 28 29 meta = with lib; { 30 description = "Python plotting library for collaborative, interactive, publication-quality graphs"; 31 homepage = "https://plot.ly/python/"; 32 license = with licenses; [ mit ]; 33 maintainers = with maintainers; [ ]; 34 }; 35}