Loading pkgs/development/python-modules/ttach/default.nix 0 → 100644 +33 −0 Original line number Diff line number Diff line { fetchFromGitHub , pythonOlder , pytestCheckHook , torch , buildPythonPackage , lib }: buildPythonPackage rec { pname = "ttach"; version = "0.0.3"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "qubvel"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-R6QO+9hv0eI7dZW5iJf096+LU1q+vnmOpveurgZemPc="; }; propagatedBuildInputs = [ torch ]; checkInputs = [ 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11593,6 +11593,8 @@ self: super: with self; { trytond = callPackage ../development/python-modules/trytond { }; ttach = callPackage ../development/python-modules/ttach { }; ttls = callPackage ../development/python-modules/ttls { }; ttp = callPackage ../development/python-modules/ttp { }; Loading Loading
pkgs/development/python-modules/ttach/default.nix 0 → 100644 +33 −0 Original line number Diff line number Diff line { fetchFromGitHub , pythonOlder , pytestCheckHook , torch , buildPythonPackage , lib }: buildPythonPackage rec { pname = "ttach"; version = "0.0.3"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "qubvel"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-R6QO+9hv0eI7dZW5iJf096+LU1q+vnmOpveurgZemPc="; }; propagatedBuildInputs = [ torch ]; checkInputs = [ 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11593,6 +11593,8 @@ self: super: with self; { trytond = callPackage ../development/python-modules/trytond { }; ttach = callPackage ../development/python-modules/ttach { }; ttls = callPackage ../development/python-modules/ttls { }; ttp = callPackage ../development/python-modules/ttp { }; Loading