bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
rustPlatform,
|
|
pytestCheckHook,
|
|
libiconv,
|
|
vectorscan,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyperscan";
|
|
version = "0.3.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vlaci";
|
|
repo = "pyperscan";
|
|
rev = "v${version}";
|
|
hash = "sha256-uGZ0XFxnZHSLEWcwoHVd+xMulDRqEIrQ5Lf7886GdlM=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-a4jNofPIHoKwsD82y2hG2QPu+eM5D7FSGCm2nDo2cLA=";
|
|
};
|
|
|
|
nativeBuildInputs = with rustPlatform; [
|
|
bindgenHook
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
buildInputs = [ vectorscan ] ++ lib.optional stdenv.isDarwin libiconv;
|
|
|
|
pythonImportsCheck = [ "pyperscan" ];
|
|
|
|
meta = with lib; {
|
|
description = "Hyperscan binding for Python, which supports vectorscan";
|
|
homepage = "https://vlaci.github.io/pyperscan/";
|
|
changelog = "https://github.com/vlaci/pyperscan/releases/tag/${src.rev}";
|
|
platforms = platforms.unix;
|
|
license = with licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [
|
|
tnias
|
|
vlaci
|
|
];
|
|
};
|
|
}
|