2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
# build inputs
|
|
|
|
torch,
|
|
|
|
torchvision,
|
|
|
|
timm,
|
|
|
|
pycocotools,
|
|
|
|
omegaconf,
|
2023-07-15 17:15:38 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
pname = "effdet";
|
|
|
|
version = "0.4.1";
|
|
|
|
in
|
|
|
|
buildPythonPackage {
|
|
|
|
inherit pname version;
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-rFWJ/TBKVlDCAZhrLvX44QwREJOnGxxJ+muIF3EIErU=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
torch
|
|
|
|
torchvision
|
|
|
|
timm
|
|
|
|
pycocotools
|
|
|
|
omegaconf
|
|
|
|
];
|
|
|
|
|
|
|
|
# Project has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "effdet" ];
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "PyTorch implementation of EfficientDet";
|
2023-07-15 17:15:38 +00:00
|
|
|
homepage = "https://pypi.org/project/effdet";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
|
|
};
|
|
|
|
}
|