Files
nixpkgs/pkgs/development/python-modules/pyperscan/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

57 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
];
};
}