Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b656e03aae96
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6980edf2ba71
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 23, 2018

  1. pythonPackages.torchvision: 0.1.9 -> 0.2.1

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed May 23, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    samsonasik Abdul Malik Ikhsan
    Copy the full SHA
    6980edf View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/python-modules/torchvision/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/torchvision/default.nix
Original file line number Diff line number Diff line change
@@ -4,10 +4,11 @@
, numpy
, pillow
, pytorch
, lib }:
, lib
}:

buildPythonPackage rec {
version = "0.1.9";
version = "0.2.1";
pname = "torchvision";
name = "${pname}-${version}";

@@ -16,7 +17,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
format = "wheel";
sha256 = "016rjfh9w1x4xpw15ryxsvq3j2li17nd3a7qslnf3241hc6vdcwf";
sha256 = "18gvdabkmzfjg47ns0lw38mf85ry28nq1mas5rzlwvb4l5zmw2ms";
};

propagatedBuildInputs = [ six numpy pillow pytorch ];