python3Packages.torchvision: 1.13.0 -> 1.13.1

https://github.com/pytorch/vision/releases/tag/v0.13.1

+2 -2
+2 -2
pkgs/development/python-modules/torchvision/default.nix
··· 24 24 cudaArchStr = lib.optionalString cudaSupport lib.strings.concatStringsSep ";" torch.cudaArchList; 25 25 in buildPythonPackage rec { 26 26 pname = "torchvision"; 27 - version = "0.13.0"; 27 + version = "0.13.1"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "pytorch"; 31 31 repo = "vision"; 32 32 rev = "refs/tags/v${version}"; 33 - sha256 = "sha256-nIE1HvmAhRh3Hvj3qlF52sN9LGIorLiXlLtN7tzQxqU="; 33 + hash = "sha256-QlUAFAG6zEDCDSXR5n2CznspU3fT0kbqySzofGLPgK4="; 34 34 }; 35 35 36 36 nativeBuildInputs = [ libpng ninja which ]