blob: cf7d21f680e7f3e09c7de2edf3429896cc5c6c0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
numpy,
opencv-python,
lxml,
xmljson,
pytestCheckHook,
}:
buildPythonPackage {
pname = "imantics";
version = "0.1.12";
pyproject = true;
src = fetchFromGitHub {
owner = "jsbroks";
repo = "imantics";
rev = "76d81036d8f92854d63ad9938dd76c718f8b482e";
sha256 = "1zv2gj8cbakhh2fyr2611cbqhfk37a56x973ny9n43y70n26pzm8";
};
build-system = [ setuptools ];
dependencies = [
numpy
opencv-python
lxml
xmljson
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "imantics" ];
meta = {
description = "Convert and visualize many annotation formats for object dectection and localization";
homepage = "https://github.com/jsbroks/imantics";
license = with lib.licenses; [ mit ];
maintainers = [ lib.maintainers.rakesh4g ];
};
}
|