Files
nixpkgs/pkgs/development/python-modules/clifford/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

77 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
h5py,
ipython,
numba,
numpy,
pytestCheckHook,
setuptools,
scipy,
sparse,
}:
buildPythonPackage rec {
pname = "clifford";
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-eVE8FrD0YHoRreY9CrNb8v4v4KrG83ZU0oFz+V+p+Q0=";
};
build-system = [ setuptools ];
dependencies = [
h5py
numba
numpy
scipy
sparse
];
nativeCheckInputs = [
pytestCheckHook
ipython
];
# avoid collecting local files
preCheck = ''
cd clifford/test
'';
disabledTests = [
"veryslow"
"test_algebra_initialisation"
"test_cga"
"test_grade_projection"
"test_multiple_grade_projection"
"test_inverse"
"test_inv_g4"
];
disabledTestPaths = [
# Disable failing tests
"test_g3c_tools.py"
"test_multivector_inverse.py"
];
pythonImportsCheck = [ "clifford" ];
meta = with lib; {
description = "Numerical Geometric Algebra Module";
homepage = "https://clifford.readthedocs.io";
changelog = "https://github.com/pygae/clifford/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = [ ];
# Broken with numba >= 0.54
# see https://github.com/pygae/clifford/issues/430
broken = versionAtLeast numba.version "0.58";
};
}