torchvision: init at 0.1.9

This commit is contained in:
Eric Sagnes 2017-08-19 16:47:23 +09:00
parent dd809b930e
commit 14ce4217e3
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ buildPythonPackage
, fetchPypi
, six
, numpy
, pillow
, pytorch
, lib }:
buildPythonPackage rec {
version = "0.1.9";
pname = "torchvision";
name = "${pname}-${version}";
format = "wheel";
src = fetchPypi {
inherit pname version;
format = "wheel";
sha256 = "016rjfh9w1x4xpw15ryxsvq3j2li17nd3a7qslnf3241hc6vdcwf";
};
propagatedBuildInputs = [ six numpy pillow pytorch ];
meta = {
description = "PyTorch vision library";
homepage = http://pytorch.org/;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ ericsagnes ];
};
}

View file

@ -27064,6 +27064,8 @@ EOF
};
};
torchvision = callPackage ../development/python-modules/torchvision { };
jenkinsapi = buildPythonPackage rec {
name = "jenkinsapi-${version}";
version = "0.2.32";