Merge pull request #255532 from mbalatsko/init-mrsqm

python3Packages.mrsqm: init at 0.0.4
This commit is contained in:
OTABI Tomoya 2023-09-20 11:29:47 +09:00 committed by GitHub
commit 7c74737c56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, cython
, fftw
, pandas
, scikit-learn
, numpy
}:
buildPythonPackage rec {
pname = "mrsqm";
version = "0.0.4";
format = "setuptools";
disable = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-kg9GSgtBpnCF+09jyP5TRwZh0tifxx4WRtQGn8bLH8c=";
};
buildInputs = [ fftw ];
nativeBuildInputs = [
cython
];
propagatedBuildInputs = [
pandas
scikit-learn
numpy
];
doCheck = false; # Package has no tests
pythonImportsCheck = [ "mrsqm" ];
meta = with lib; {
description = "MrSQM (Multiple Representations Sequence Miner) is a time series classifier";
homepage = "https://pypi.org/project/mrsqm";
license = licenses.gpl3Only;
maintainers = with maintainers; [ mbalatsko ];
};
}

View File

@ -6905,6 +6905,8 @@ self: super: with self; {
mrjob = callPackage ../development/python-modules/mrjob { };
mrsqm = callPackage ../development/python-modules/mrsqm { };
ms-active-directory = callPackage ../development/python-modules/ms-active-directory { };
ms-cv = callPackage ../development/python-modules/ms-cv { };