blob: e901c2080007ca337fe901ffd714f7fdcc150c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
argparse-dataclass,
throttler,
snakemake-interface-common,
}:
buildPythonPackage rec {
pname = "snakemake-interface-executor-plugins";
version = "9.3.9";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
repo = "snakemake-interface-executor-plugins";
tag = "v${version}";
hash = "sha256-NiOVUHB9UU1ZqNAVomZmpzyzDwtbLCd+2MaIvpo5G7k=";
};
build-system = [ poetry-core ];
dependencies = [
argparse-dataclass
throttler
snakemake-interface-common
];
pythonImportsCheck = [ "snakemake_interface_executor_plugins" ];
meta = {
description = "This package provides a stable interface for interactions between Snakemake and its executor plugins";
homepage = "https://github.com/snakemake/snakemake-interface-executor-plugins";
changelog = "https://github.com/snakemake/snakemake-interface-executor-plugins/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ veprbl ];
};
}
|