mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-18 14:00:23 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
41 lines
927 B
Nix
41 lines
927 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, bokeh
|
|
, ipython
|
|
, matplotlib
|
|
, numpy
|
|
, nbconvert
|
|
, nbformat
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "livelossplot";
|
|
version = "0.5.4";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
# version number in source is wrong in this release
|
|
postPatch = ''substituteInPlace ${pname}/version.py --replace "0.5.3" "0.5.4"'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stared";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "IV6YAidoqVoKvpy+LNNHTPpobiDoGX59bHqJcBtaydk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ bokeh ipython matplotlib numpy ];
|
|
|
|
nativeCheckInputs = [ nbconvert nbformat pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Live training loss plot in Jupyter for Keras, PyTorch, and others";
|
|
homepage = "https://github.com/stared/livelossplot";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|