1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytz 5, requests 6, six 7, tenacity 8}: 9 10buildPythonPackage rec { 11 pname = "plotly"; 12 version = "5.3.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "6598393e898a9c5ae78397f76f07002ec41fd92e5f746d3b9806248d53885643"; 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}