python311Packages.tensordict: init at 0.2.1

This commit is contained in:
Gaetan Lepage 2023-12-18 11:16:53 +01:00
parent 0d308a02a6
commit 1642ca6fc6
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,63 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, torch
, wheel
, which
, cloudpickle
, numpy
, h5py
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tensordict";
version = "0.2.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pytorch";
repo = "tensordict";
rev = "refs/tags/v${version}";
hash = "sha256-+Osoz1632F/dEkG/o8RUqCIDok2Qc9Qdak+CCr9m26g=";
};
nativeBuildInputs = [
setuptools
torch
wheel
which
];
propagatedBuildInputs = [
cloudpickle
numpy
torch
];
pythonImportsCheck = [
"tensordict"
];
# We have to delete the source because otherwise it is used instead of the installed package.
preCheck = ''
rm -rf tensordict
'';
nativeCheckInputs = [
h5py
pytestCheckHook
];
meta = with lib; {
description = "A pytorch dedicated tensor container";
changelog = "https://github.com/pytorch/tensordict/releases/tag/v${version}";
homepage = "https://github.com/pytorch/tensordict";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View File

@ -14130,6 +14130,8 @@ self: super: with self; {
tensorboardx = callPackage ../development/python-modules/tensorboardx { };
tensordict = callPackage ../development/python-modules/tensordict { };
tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix {
inherit (pkgs.config) cudaSupport;
};