nixpkgs/pkgs/development/python-modules/effdet/default.nix
2023-07-09 13:09:04 +08:00

44 lines
754 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 = "A PyTorch implementation of EfficientDet";
homepage = "https://pypi.org/project/effdet";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ happysalada ];
};
}