python.pkgs.bkcharts: init at 0.2
This commit is contained in:
parent
5db60dbe1d
commit
e9215bda45
29
pkgs/development/python-modules/bkcharts/default.nix
Normal file
29
pkgs/development/python-modules/bkcharts/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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 = http://github.com/bokeh/bkcharts;
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
}
|
@ -2109,6 +2109,7 @@ in {
|
||||
bokeh = buildPythonPackage rec {
|
||||
name = "bokeh-${version}";
|
||||
version = "0.12.3";
|
||||
bkcharts = callPackage ../development/python-modules/bkcharts { };
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/b/bokeh/${name}.tar.gz";
|
||||
|
Loading…
Reference in New Issue
Block a user