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

49 lines
953 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";
2019-10-24 06:47:46 +00:00
version = "1.1.1";
disabled = isPy27;
2018-07-20 05:38:08 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:46 +00:00
sha256 = "1a64b40f6acb4ffbaccce0545d7fc641744f95351f62e4c6aaa40549326008c9";
2018-07-20 05:38:08 +00:00
};
checkInputs = [ nose pytest ];
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
};
}