mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
f0ce7ff011
Diff: https://github.com/snakemake/snakemake-interface-executor-plugins/compare/refs/tags/v9.2.0...v9.3.2 Changelog: https://github.com/snakemake/snakemake-interface-executor-plugins/blob/v9.3.2/CHANGELOG.md
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
argparse-dataclass,
|
|
throttler,
|
|
snakemake-interface-common,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snakemake-interface-executor-plugins";
|
|
version = "9.3.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snakemake";
|
|
repo = "snakemake-interface-executor-plugins";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3XdsEnL+kuYhNOeAxkAsjTJ2R6NOtq97zPhQg9kdFkI=";
|
|
};
|
|
|
|
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.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ veprbl ];
|
|
};
|
|
}
|