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