python3Packages.tensorflow_2: 2.3.2 -> 2.4.0
Also the following related changes: * Removed Python 2 support because it's not supported by TF and related packages for a long time. * Upgraded tensorboard and estimator packages to the required versions. * Added extra plugins for tensorboard to support profiling. * In the previous derivation versions, TF_SYSTEM_LIBS didn't have any effect because it was reset at repo fetching stage, so TF always used its own dependencies. Made TF_SYSTEM_LIBS actually work and fixed the errors caused by enabling it. * Enabled tensorboard by default (but still keeping an option to disable it if needed).
This commit is contained in:
26
pkgs/development/python-modules/gviz-api/default.nix
Normal file
26
pkgs/development/python-modules/gviz-api/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ lib, fetchPypi, buildPythonPackage
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gviz_api";
|
||||
version = "1.9.0";
|
||||
format = "wheel";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
format = "wheel";
|
||||
sha256 = "1yag559lpmwfdxpxn679a6ajifcbpgljr5n6k5b7rrj38k2xq7jg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python API for Google Visualization";
|
||||
homepage = https://developers.google.com/chart/interactive/docs/dev/gviz_api_lib;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ndl ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user