Files
nixpkgs/pkgs/development/python-modules/ttach/default.nix
2025-05-25 04:04:53 +02:00

36 lines
734 B
Nix

{
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
torch,
buildPythonPackage,
lib,
}:
buildPythonPackage rec {
pname = "ttach";
version = "0.0.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "qubvel";
repo = "ttach";
tag = "v${version}";
hash = "sha256-R6QO+9hv0eI7dZW5iJf096+LU1q+vnmOpveurgZemPc=";
};
propagatedBuildInputs = [ torch ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ttach" ];
meta = with lib; {
description = "Image Test Time Augmentation with PyTorch";
homepage = "https://github.com/qubvel/ttach";
license = with licenses; [ mit ];
maintainers = with maintainers; [ cfhammill ];
};
}