15 buildPythonPackage rec {
20 disabled = pythonOlder "3.6";
22 src = fetchFromGitHub {
23 owner = "varunagrawal";
25 # matches 0.9.4 on PyPi + tests
26 rev = "d3f07ed0e38b6015cf4181e3b3edae6a263f8565";
27 hash = "sha256-FrJ8FhlqwmnEB/QvPlkDfqZncNGPhwY9aagM9yv1LGs=";
30 nativeBuildInputs = [ poetry-core ];
32 propagatedBuildInputs = [
45 # performance test, racy on busy machines
46 "test_multi_jaccard_index_2d_performance"
49 pythonImportsCheck = [ "bbox" ];
52 description = "Python library for 2D/3D bounding boxes";
53 homepage = "https://github.com/varunagrawal/bbox";
54 license = licenses.mit;
55 maintainers = with maintainers; [ lucasew ];