Commit f5839272 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin
Browse files

python3Packages.livelossplot: 0.5.4 -> 0.5.5

parent 611255fd
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -13,18 +13,15 @@

buildPythonPackage rec {
  pname = "livelossplot";
  version = "0.5.4";
  version = "0.5.5";

  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=";
    sha256 = "sha256-YU8vX4SubI6txmC/i5fOjcvWfuDFm8+SPmie8Eb1qRs=";
  };

  propagatedBuildInputs = [ bokeh ipython matplotlib numpy ];