python313Packages.snakemake-interface-scheduler-plugins: init at 2.0.1

This commit is contained in:
kyehn
2025-10-01 22:42:15 +00:00
committed by kyehn
parent ea7b9bfc3d
commit bb9ff85a59
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
snakemake-interface-common,
}:
let
version = "2.0.1";
src = fetchFromGitHub {
owner = "snakemake";
repo = "snakemake-interface-scheduler-plugins";
tag = "v${version}";
hash = "sha256-Z/rJGkby9AcYB+Gil00xhbrySChqEIEOtzLyzQPhObk=";
};
in
buildPythonPackage {
pname = "snakemake-interface-scheduler-plugins";
inherit version src;
pyproject = true;
build-system = [ hatchling ];
dependencies = [ snakemake-interface-common ];
pythonImportsCheck = [ "snakemake_interface_scheduler_plugins" ];
# test_scheduler: No module named 'snakemake'
# nativeCheckInputs = [ pytestCheckHook ];
# enabledTestPaths = [ "tests/tests.py" ];
meta = {
description = "Provides a stable interface for interactions between Snakemake and its scheduler plugins";
homepage = "https://github.com/snakemake/snakemake-interface-scheduler-plugins";
changelog = "https://github.com/snakemake/snakemake-interface-scheduler-plugins/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kyehn ];
};
}
+4
View File
@@ -17013,6 +17013,10 @@ self: super: with self; {
callPackage ../development/python-modules/snakemake-interface-report-plugins
{ };
snakemake-interface-scheduler-plugins =
callPackage ../development/python-modules/snakemake-interface-scheduler-plugins
{ };
snakemake-interface-storage-plugins =
callPackage ../development/python-modules/snakemake-interface-storage-plugins
{ };