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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
946 B
Nix
Raw Normal View History

2018-07-20 05:38:08 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
2018-07-20 05:38:08 +00:00
, cython
, nose
, pytest
, numpy
}:
buildPythonPackage rec {
pname = "PyWavelets";
version = "1.4.1";
disabled = isPy27;
2018-07-20 05:38:08 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ZDevPd8IMRjCbY+Xq0OwckuVbJ+Vjp6niGWfaig0upM=";
2018-07-20 05:38:08 +00:00
};
nativeCheckInputs = [ nose pytest ];
2018-07-20 05:38:08 +00:00
buildInputs = [ cython ];
propagatedBuildInputs = [ numpy ];
# Somehow nosetests doesn't run the tests, so let's use pytest instead
doCheck = false; # tests use relative paths, which fail to resolve
2018-07-20 05:38:08 +00:00
checkPhase = ''
py.test pywt/tests
'';
# ensure compiled modules are present
pythonImportsCheck = [
"pywt"
"pywt._extensions._cwt"
"pywt._extensions._dwt"
"pywt._extensions._pywt"
"pywt._extensions._swt"
];
meta = with lib; {
2018-07-20 05:38:08 +00:00
description = "Wavelet transform module";
homepage = "https://github.com/PyWavelets/pywt";
license = licenses.mit;
2018-07-20 05:38:08 +00:00
};
}