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

51 lines
788 B
Nix
Raw Normal View History

2019-07-14 22:09:01 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, scipy
, numba
, future
, h5py
, nose
, isPy27
}:
buildPythonPackage rec {
pname = "clifford";
2020-06-06 06:47:01 +00:00
version = "1.3.1";
2019-07-14 22:09:01 +00:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:01 +00:00
sha256 = "ade11b20d0631dfc9c2f18ce0149f1e61e4baf114108b27cfd68e5c1619ecc0c";
2019-07-14 22:09:01 +00:00
};
propagatedBuildInputs = [
numpy
scipy
numba
future
h5py
];
checkInputs = [
nose
];
preConfigure = ''
substituteInPlace setup.py \
--replace "'numba==0.43'" "'numba'"
'';
checkPhase = ''
nosetests
'';
meta = with lib; {
description = "Numerical Geometric Algebra Module";
homepage = "https://clifford.readthedocs.io";
2019-07-14 22:09:01 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}