nixpkgs/pkgs/development/python-modules/multiregex/default.nix
Fabian Affolter e23f404195 python314Packages.multiregex: init at 2.0.3
Quickly match many regexes against a string

https://github.com/quantco/multiregex
2026-01-26 14:25:14 +01:00

41 lines
868 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pyahocorasick,
pytestCheckHook,
setuptools-scm,
setuptools,
}:
buildPythonPackage rec {
pname = "multiregex";
version = "2.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "quantco";
repo = "multiregex";
tag = version;
hash = "sha256-S10FJwtFNK4CarE2YAcUM38hRYTDL0Vp4B8NqGvJs5M=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ pyahocorasick ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "multiregex" ];
meta = {
description = "Quickly match many regexes against a string";
homepage = "https://github.com/quantco/multiregex";
changelog = "https://github.com/quantco/multiregex/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}