Files
nixpkgs/pkgs/development/python-modules/mrsqm/default.nix
T
Martin Weinelt 24926832e0 python3Packages.mrsqm: 0.0.7 -> 4
https://github.com/mlgig/mrsqm/releases/tag/v.r4

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:35 +01:00

79 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
fftw,
pandas,
scikit-learn,
numpy,
pip,
setuptools,
pytestCheckHook,
nix-update-script,
}:
buildPythonPackage rec {
pname = "mrsqm";
version = "4";
pyproject = true;
build-system = [
setuptools
];
src = fetchFromGitHub {
owner = "mlgig";
repo = "mrsqm";
tag = "r${version}";
hash = "sha256-59f18zItV3K6tXcg1v1q2Z8HYrQB8T0ntaaqjxeAEbM=";
};
buildInputs = [ fftw ];
nativeBuildInputs = [ cython ];
dependencies = [
pandas
scikit-learn
numpy
pip
];
postPatch = ''
substituteInPlace setup.py \
--replace-fail "setup_requires=['pytest-runner']," ""
substituteInPlace pyproject.toml \
--replace-fail "numpy==" "numpy>="
'';
preBuild = ''
export HOME=$(mktemp -d)
'';
nativeCheckInputs = [
pytestCheckHook
];
enabledTestPaths = [
"tests/mrsqm"
];
pythonImportsCheck = [ "mrsqm" ];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"v\\.(.*)"
];
};
meta = {
description = "MrSQM (Multiple Representations Sequence Miner) is a time series classifier";
homepage = "https://pypi.org/project/mrsqm";
changelog = "https://github.com/mlgig/mrsqm/releases/tag/v.${src.tag}";
license = lib.licenses.gpl3Only;
maintainers = [ ];
};
}