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

63 lines
977 B
Nix
Raw Normal View History

2019-05-20 16:55:11 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, mpmath
, numpy
, pipdate
, pybind11
, pyfma
, eigen
, pytest
, matplotlib
, perfplot
, isPy27
}:
buildPythonPackage rec {
pname = "accupy";
2020-06-06 08:46:56 +02:00
version = "0.3.1";
2019-05-20 16:55:11 +02:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-06-06 08:46:56 +02:00
sha256 = "b568de740e1cd137a96af1801b4d3d5f795e0f97be25c29957f39f004fbcdf9a";
2019-05-20 16:55:11 +02:00
};
buildInputs = [
pybind11 eigen
];
propagatedBuildInputs = [
mpmath
numpy
pipdate
pyfma
];
checkInputs = [
pytest
matplotlib
perfplot
];
postConfigure = ''
substituteInPlace setup.py \
--replace "/usr/include/eigen3/" "${eigen}/include/eigen3/"
'';
preBuild = ''
export HOME=$(mktemp -d)
'';
checkPhase = ''
pytest test
'';
meta = with lib; {
description = "Accurate sums and dot products for Python";
homepage = "https://github.com/nschloe/accupy";
2019-05-20 16:55:11 +02:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}