nixpkgs/pkgs/development/python-modules/clifford/default.nix

62 lines
1 KiB
Nix
Raw Normal View History

2019-07-15 00:09:01 +02:00
{ lib
, buildPythonPackage
, fetchPypi
2020-10-04 19:58:28 +02:00
, isPy27
, future
, h5py
, ipython
, numba
2019-07-15 00:09:01 +02:00
, numpy
2020-10-04 19:58:28 +02:00
, pytestCheckHook
2019-07-15 00:09:01 +02:00
, scipy
2020-08-29 20:53:51 +02:00
, sparse
2019-07-15 00:09:01 +02:00
}:
buildPythonPackage rec {
pname = "clifford";
2020-06-06 08:47:01 +02:00
version = "1.3.1";
2019-07-15 00:09:01 +02:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-06-06 08:47:01 +02:00
sha256 = "ade11b20d0631dfc9c2f18ce0149f1e61e4baf114108b27cfd68e5c1619ecc0c";
2019-07-15 00:09:01 +02:00
};
propagatedBuildInputs = [
2020-10-04 19:58:28 +02:00
future
h5py
numba
2019-07-15 00:09:01 +02:00
numpy
scipy
2020-08-29 20:53:51 +02:00
sparse
2019-07-15 00:09:01 +02:00
];
checkInputs = [
2020-10-04 19:58:28 +02:00
pytestCheckHook
ipython
2019-07-15 00:09:01 +02:00
];
2020-10-04 19:58:28 +02:00
postPatch = ''
2019-07-15 00:09:01 +02:00
substituteInPlace setup.py \
--replace "'numba==0.43'" "'numba'"
'';
2020-10-04 19:58:28 +02:00
# avoid collecting local files
preCheck = ''
cd clifford/test
2019-07-15 00:09:01 +02:00
'';
2020-10-04 19:58:28 +02:00
pytestFlagsArray = [
"-m \"not veryslow\""
"--ignore=test_algebra_initialisation.py" # fails without JIT
"--ignore=test_cga.py"
];
2019-07-15 00:09:01 +02:00
meta = with lib; {
description = "Numerical Geometric Algebra Module";
homepage = "https://clifford.readthedocs.io";
2019-07-15 00:09:01 +02:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}