python311Packages.bbox: pyproject = true; fix build

This commit is contained in:
annalee 2023-11-17 06:42:09 +00:00
parent b7137a71c1
commit 9596dd2496
No known key found for this signature in database

View file

@ -4,11 +4,13 @@
, pythonOlder
, pyquaternion
, numpy
, poetry-core
}:
buildPythonPackage rec {
pname = "bbox";
version = "0.9.4";
pyproject = true;
disabled = pythonOlder "3.6";
@ -18,6 +20,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ pyquaternion numpy ];
buildInputs = [ poetry-core ];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "bbox" ];