13 buildPythonPackage rec {
16 format = "setuptools";
18 disabled = pythonOlder "3.8";
21 inherit pname version;
22 hash = "sha256-kZwgRazvPCmARcfhLByh1E8VPurrb8gVZc96hFfDOvs=";
25 buildInputs = [ fftw ];
27 nativeBuildInputs = [ cython ];
29 propagatedBuildInputs = [
35 # Package has no tests
38 pythonImportsCheck = [ "mrsqm" ];
41 description = "MrSQM (Multiple Representations Sequence Miner) is a time series classifier";
42 homepage = "https://pypi.org/project/mrsqm";
43 changelog = "https://github.com/mlgig/mrsqm/releases/tag/v.${version}";
44 license = licenses.gpl3Only;
45 maintainers = with maintainers; [ mbalatsko ];