python3Packages.pytorch-pfn-extras: 0.7.2 -> 0.7.4

This commit is contained in:
Martin Weinelt 2023-12-03 00:02:34 +01:00
parent b47ae21874
commit 1808c61593
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,6 +1,7 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
, setuptools
, numpy
, onnx
, packaging
@ -13,16 +14,20 @@
buildPythonPackage rec {
pname = "pytorch-pfn-extras";
version = "0.7.2";
format = "setuptools";
version = "0.7.4";
pyproject = true;
src = fetchFromGitHub {
owner = "pfnet";
repo = pname;
repo = "pytorch-pfn-extras";
rev = "refs/tags/v${version}";
hash = "sha256-juoLw/qfq4YF7opyR7cTYCVzUa9pXVvQnvGntcQhBr4=";
hash = "sha256-X7N2RQS8he9FJPfEjPJH6GdxkAPV6uxOIfRVOnJId0U=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ numpy packaging torch typing-extensions ];
nativeCheckInputs = [ onnx pytestCheckHook torchvision ];