python3Packages.vg: disable failing test; modernize

The vg tests were broken somewhere in #371501. Specifically one test
that compared to floats failed due to them being 1E-17 apart.
This commit is contained in:
Anton Mosich
2025-05-01 23:11:12 +02:00
parent dcd14f078d
commit bccf7dfa28
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "vg";
version = "2.0.0";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -27,19 +27,21 @@ buildPythonPackage rec {
--replace 'requires = ["setuptools", "poetry-core>=1.0.0"]' 'requires = ["poetry-core>=1.0.0"]'
'';
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [ numpy ];
dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [ "test_basic" ];
pythonImportsCheck = [ "vg" ];
meta = with lib; {
meta = {
description = "Linear algebra for humans: a very good vector-geometry and linear-algebra toolbelt";
homepage = "https://github.com/lace/vg";
changelog = "https://github.com/lace/vg/blob/${version}/CHANGELOG.md";
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ clerie ];
license = [ lib.licenses.bsd2 ];
maintainers = with lib.maintainers; [ clerie ];
};
}