fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
913 B
Nix
37 lines
913 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
snakemake-interface-executor-plugins,
|
|
snakemake-interface-common,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snakemake-executor-plugin-cluster-generic";
|
|
version = "1.0.9";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snakemake";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RHMefoJOZb6TjRsFCORLFdHtI5ZpTsV6CHrjHKMat9o=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
snakemake-interface-executor-plugins
|
|
snakemake-interface-common
|
|
];
|
|
|
|
pythonImportsCheck = [ "snakemake_executor_plugin_cluster_generic" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generic cluster executor for Snakemake";
|
|
homepage = "https://github.com/snakemake/snakemake-executor-plugin-cluster-generic";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|