16 buildPythonPackage rec {
21 disabled = pythonOlder "3.5";
24 inherit pname version;
25 hash = "sha256-eVE8FrD0YHoRreY9CrNb8v4v4KrG83ZU0oFz+V+p+Q0=";
28 build-system = [ setuptools ];
43 # avoid collecting local files
50 "test_algebra_initialisation"
52 "test_grade_projection"
53 "test_multiple_grade_projection"
59 # Disable failing tests
61 "test_multivector_inverse.py"
64 pythonImportsCheck = [ "clifford" ];
67 description = "Numerical Geometric Algebra Module";
68 homepage = "https://clifford.readthedocs.io";
69 changelog = "https://github.com/pygae/clifford/releases/tag/v${version}";
70 license = licenses.bsd3;
72 # Broken with numba >= 0.54
73 # see https://github.com/pygae/clifford/issues/430
74 broken = versionAtLeast numba.version "0.58";