mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python3Packages.torchvision: 1.13.0 -> 1.13.1
https://github.com/pytorch/vision/releases/tag/v0.13.1
This commit is contained in:
parent
5863492c51
commit
aba6cd17c4
1 changed files with 2 additions and 2 deletions
|
@ -24,13 +24,13 @@ let
|
||||||
cudaArchStr = lib.optionalString cudaSupport lib.strings.concatStringsSep ";" torch.cudaArchList;
|
cudaArchStr = lib.optionalString cudaSupport lib.strings.concatStringsSep ";" torch.cudaArchList;
|
||||||
in buildPythonPackage rec {
|
in buildPythonPackage rec {
|
||||||
pname = "torchvision";
|
pname = "torchvision";
|
||||||
version = "0.13.0";
|
version = "0.13.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pytorch";
|
owner = "pytorch";
|
||||||
repo = "vision";
|
repo = "vision";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-nIE1HvmAhRh3Hvj3qlF52sN9LGIorLiXlLtN7tzQxqU=";
|
hash = "sha256-QlUAFAG6zEDCDSXR5n2CznspU3fT0kbqySzofGLPgK4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ libpng ninja which ]
|
nativeBuildInputs = [ libpng ninja which ]
|
||||||
|
|
Loading…
Reference in a new issue