nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.livelossplot: 0.5.4 -> 0.5.5

+2 -5
+2 -5
pkgs/development/python-modules/livelossplot/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "livelossplot"; 16 - version = "0.5.4"; 16 + version = "0.5.5"; 17 17 18 18 disabled = pythonOlder "3.6"; 19 - 20 - # version number in source is wrong in this release 21 - postPatch = ''substituteInPlace ${pname}/version.py --replace "0.5.3" "0.5.4"''; 22 19 23 20 src = fetchFromGitHub { 24 21 owner = "stared"; 25 22 repo = pname; 26 23 rev = "v${version}"; 27 - sha256 = "IV6YAidoqVoKvpy+LNNHTPpobiDoGX59bHqJcBtaydk="; 24 + sha256 = "sha256-YU8vX4SubI6txmC/i5fOjcvWfuDFm8+SPmie8Eb1qRs="; 28 25 }; 29 26 30 27 propagatedBuildInputs = [ bokeh ipython matplotlib numpy ];