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

36 lines
650 B
Nix
Raw Normal View History

2018-07-20 07:38:08 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, cython
, nose
, pytest
, numpy
}:
buildPythonPackage rec {
pname = "PyWavelets";
2019-04-16 19:15:40 +02:00
version = "1.0.3";
2018-07-20 07:38:08 +02:00
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:40 +02:00
sha256 = "a12c7a6258c0015d2c75d88b87393ee015494551f049009e8b63eafed2d78efc";
2018-07-20 07:38:08 +02:00
};
checkInputs = [ nose pytest ];
buildInputs = [ cython ];
propagatedBuildInputs = [ numpy ];
# Somehow nosetests doesn't run the tests, so let's use pytest instead
checkPhase = ''
py.test pywt/tests
'';
meta = {
description = "Wavelet transform module";
homepage = https://github.com/PyWavelets/pywt;
license = lib.licenses.mit;
};
}