1 { lib, buildPythonPackage, fetchPypi
2 , fftw, fftwFloat, fftwLongDouble, numpy, scipy, cython, dask }:
4 buildPythonPackage rec {
10 sha256 = "60988e823ca75808a26fd79d88dbae1de3699e72a293f812aa4534f8a0a58cb0";
14 export LDFLAGS="-L${fftw.out}/lib -L${fftwFloat.out}/lib -L${fftwLongDouble.out}/lib"
15 export CFLAGS="-I${fftw.dev}/include -I${fftwFloat.dev}/include -I${fftwLongDouble.dev}/include"
18 buildInputs = [ fftw fftwFloat fftwLongDouble];
20 propagatedBuildInputs = [ numpy scipy cython dask ];
22 # Tests cannot import pyfftw. pyfftw works fine though.
24 pythonImportsCheck = [ "pyfftw" ];
27 description = "A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms";
28 homepage = "http://hgomersall.github.com/pyFFTW/";
29 license = with licenses; [ bsd2 bsd3 ];
30 maintainers = with maintainers; [ fridh ];