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

62 lines
1.0 KiB
Nix
Raw Normal View History

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