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

python3Packages.pytorch-lightning: 2.5.4 -> 2.5.5

Diff: https://github.com/Lightning-AI/pytorch-lightning/compare/2.5.4...2.5.5

Changelog: https://github.com/Lightning-AI/pytorch-lightning/releases/tag/2.5.5

+2 -2
+2 -2
pkgs/development/python-modules/pytorch-lightning/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "pytorch-lightning"; 27 - version = "2.5.4"; 27 + version = "2.5.5"; 28 28 pyproject = true; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "Lightning-AI"; 32 32 repo = "pytorch-lightning"; 33 33 tag = version; 34 - hash = "sha256-BScZ1JlJeJ067C5AwWnD0thJvUcsCryp3k/oZsWlwJ8="; 34 + hash = "sha256-8CDVvgaxnFWO4Fl5lW/+cn/1WZCgVXYys86iOVNYUfY="; 35 35 }; 36 36 37 37 preConfigure = ''