Unverified Commit 7c74737c authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #255532 from mbalatsko/init-mrsqm

python3Packages.mrsqm: init at 0.0.4
parents c143c9d2 32558a61
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };