My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/lightning/default.nix

30 lines
596 B

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, jinja2
, matplotlib
, numpy
, requests
, six
}:
buildPythonPackage rec {
version = "1.2.1";
pname = "lightning-python";
src = fetchPypi {
inherit pname version;
sha256 = "3987d7d4a634bdb6db9bcf212cf4d2f72bab5bc039f4f6cbc02c9d01c4ade792";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ jinja2 matplotlib numpy requests six ];
meta = with lib; {
description = "A Python client library for the Lightning data visualization server";
homepage = "http://lightning-viz.org";
license = licenses.mit;
};
}