Loading pkgs/development/python-modules/mrsqm/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6893,6 +6893,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 { }; Loading Loading
pkgs/development/python-modules/mrsqm/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6893,6 +6893,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 { }; Loading