mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.bokeh: 0.12.1 -> 0.12.3
This commit is contained in:
parent
c95700f253
commit
9d8734906c
1 changed files with 3 additions and 3 deletions
|
@ -2848,11 +2848,11 @@ in modules // {
|
|||
|
||||
bokeh = buildPythonPackage rec {
|
||||
name = "bokeh-${version}";
|
||||
version = "0.12.1";
|
||||
version = "0.12.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/b/bokeh/${name}.tar.gz";
|
||||
sha256 = "06d3ed14308f550376d5b0c7e9f2bacb3ff5bbcceefd7f6369d070de71dfa563";
|
||||
sha256 = "e138941b62f59bc48bc5b8d249e90c03fed31c1d5abe47ab2ce9e4c83202f73c";
|
||||
};
|
||||
|
||||
disabled = isPyPy;
|
||||
|
@ -2869,7 +2869,6 @@ in modules // {
|
|||
werkzeug
|
||||
itsdangerous
|
||||
dateutil
|
||||
futures
|
||||
requests2
|
||||
six
|
||||
pygments
|
||||
|
@ -2880,6 +2879,7 @@ in modules // {
|
|||
tornado
|
||||
colorama
|
||||
]
|
||||
++ optionals ( !isPy3k ) [ futures ]
|
||||
++ optionals ( isPy26 ) [ argparse ]
|
||||
++ optionals ( !isPy3k && !isPyPy ) [ websocket_client ]
|
||||
++ optionals ( !isPyPy ) [ numpy pandas greenlet ];
|
||||
|
|
Loading…
Reference in a new issue