14 buildPythonPackage rec {
19 disabled = pythonOlder "3.6";
21 src = fetchFromGitHub {
22 owner = "varunagrawal";
24 # matches 0.9.4 on PyPi + tests
25 rev = "d3f07ed0e38b6015cf4181e3b3edae6a263f8565";
26 hash = "sha256-FrJ8FhlqwmnEB/QvPlkDfqZncNGPhwY9aagM9yv1LGs=";
29 propagatedBuildInputs = [ pyquaternion numpy ];
30 buildInputs = [ poetry-core ];
39 pythonImportsCheck = [ "bbox" ];
42 description = "Python library for 2D/3D bounding boxes";
43 homepage = "https://github.com/varunagrawal/bbox";
44 license = licenses.mit;
45 maintainers = with maintainers; [ lucasew ];