mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
30 lines
564 B
Nix
30 lines
564 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, numpy
|
|
, pandas
|
|
}:
|
|
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bkcharts";
|
|
version = "0.2";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "a5eaa8e78853dcecaa46345812e4fabe9cd3b96330ebf0809f640a4a0556d72e";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy pandas ];
|
|
|
|
# Circular test dependency on bokeh
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "High level chart types built on top of Bokeh";
|
|
homepage = https://github.com/bokeh/bkcharts;
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|