summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/torchvision/bin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/torchvision/bin.nix')
-rw-r--r--pkgs/development/python-modules/torchvision/bin.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/torchvision/bin.nix b/pkgs/development/python-modules/torchvision/bin.nix
new file mode 100644
index 000000000000..62980dcca8c4
--- /dev/null
+++ b/pkgs/development/python-modules/torchvision/bin.nix
@@ -0,0 +1,59 @@
+{ lib
+, stdenv
+, buildPythonPackage
+, fetchurl
+, isPy37
+, isPy38
+, isPy39
+, patchelf
+, pillow
+, python
+, pytorch-bin
+}:
+
+let
+ pyVerNoDot = builtins.replaceStrings [ "." ] [ "" ] python.pythonVersion;
+ srcs = import ./binary-hashes.nix version;
+ unsupported = throw "Unsupported system";
+ version = "0.9.1";
+in buildPythonPackage {
+ inherit version;
+
+ pname = "torchvision";
+
+ format = "wheel";
+
+ src = fetchurl srcs."${stdenv.system}-${pyVerNoDot}" or unsupported;
+
+ disabled = !(isPy37 || isPy38 || isPy39);
+
+ nativeBuildInputs = [
+ patchelf
+ ];
+
+ propagatedBuildInputs = [
+ pillow
+ pytorch-bin
+ ];
+
+ pythonImportsCheck = [ "torchvision" ];
+
+ postFixup = let
+ rpath = lib.makeLibraryPath [ stdenv.cc.cc.lib ];
+ in ''
+ # Note: after patchelf'ing, libcudart can still not be found. However, this should
+ # not be an issue, because PyTorch is loaded before torchvision and brings
+ # in the necessary symbols.
+ patchelf --set-rpath "${rpath}:${pytorch-bin}/${python.sitePackages}/torch/lib:" \
+ "$out/${python.sitePackages}/torchvision/_C.so"
+ '';
+
+ meta = with lib; {
+ description = "PyTorch vision library";
+ homepage = "https://pytorch.org/";
+ changelog = "https://github.com/pytorch/vision/releases/tag/v${version}";
+ license = licenses.bsd3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ danieldk ];
+ };
+}