587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
40 lines
948 B
Nix
40 lines
948 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, argparse-dataclass
|
|
, throttler
|
|
, snakemake-interface-common
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snakemake-interface-executor-plugins";
|
|
version = "9.1.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snakemake";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-jANSGNdWmc6ERClLR/pExoboyz8gUL2FW3W7kDQDOQo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
argparse-dataclass
|
|
throttler
|
|
snakemake-interface-common
|
|
];
|
|
|
|
pythonImportsCheck = [ "snakemake_interface_executor_plugins" ];
|
|
|
|
meta = with lib; {
|
|
description = "This package provides a stable interface for interactions between Snakemake and its executor plugins";
|
|
homepage = "https://github.com/snakemake/snakemake-interface-executor-plugins";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|