depot/third_party/nixpkgs/pkgs/development/python-modules/effdet/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

44 lines
764 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build inputs
torch,
torchvision,
timm,
pycocotools,
omegaconf,
}:
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 = {
description = "PyTorch implementation of EfficientDet";
homepage = "https://pypi.org/project/effdet";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ happysalada ];
};
}