Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
920 B
Nix
50 lines
920 B
Nix
{
|
|
biopython,
|
|
buildPythonPackage,
|
|
colorama,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
lib,
|
|
numpy,
|
|
pytest-repeat,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "affine-gaps";
|
|
version = "0.2.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gata-bio";
|
|
repo = "affine-gaps";
|
|
tag = "v${version}";
|
|
hash = "sha256-GP6Ahp1LQYnKp9V7jDEeFsntMC9Qav5kWm+5bSldtyM=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
colorama
|
|
numpy
|
|
];
|
|
|
|
pythonImportsCheck = [ "affine_gaps" ];
|
|
|
|
nativeCheckInputs = [
|
|
biopython
|
|
pytest-repeat
|
|
pytestCheckHook
|
|
];
|
|
|
|
enabledTestPaths = [ "test.py" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/gata-bio/affine-gaps/releases/tag/${src.tag}";
|
|
homepage = "https://github.com/gata-bio/affine-gaps";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "affine-gaps";
|
|
maintainers = [ lib.maintainers.dotlambda ];
|
|
};
|
|
}
|