Files
nixpkgs/pkgs/development/python-modules/general-sam/default.nix
2026-07-25 17:42:37 +00:00

55 lines
1003 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
pytest,
cargo,
rustc,
}:
buildPythonPackage rec {
pname = "general-sam";
version = "1.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ModelTC";
repo = "general-sam-py";
rev = "v${version}";
hash = "sha256-/hfq14oFNPhPrhjlIDCyjMfdCuhMdKZ5DBc/nlEQKno=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-8uUCe/isN1qos8cBml16NOzUYHfr94G/GzllQt/5vWg=";
};
build-system = [
cargo
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
rustc
];
optional-dependencies = {
test = [
pytest
];
};
pythonImportsCheck = [
"general_sam"
];
meta = {
description = "General suffix automaton implementation";
homepage = "https://github.com/ModelTC/general-sam-py";
license = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [ BatteredBunny ];
};
}