1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, jinja2 6, matplotlib 7, numpy 8, requests 9, six 10}: 11 12buildPythonPackage rec { 13 version = "1.2.1"; 14 pname = "lightning-python"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "3987d7d4a634bdb6db9bcf212cf4d2f72bab5bc039f4f6cbc02c9d01c4ade792"; 19 }; 20 21 buildInputs = [ pytest ]; 22 propagatedBuildInputs = [ jinja2 matplotlib numpy requests six ]; 23 24 meta = with lib; { 25 description = "A Python client library for the Lightning data visualization server"; 26 homepage = "http://lightning-viz.org"; 27 license = licenses.mit; 28 }; 29 30}