python313Packages.snakemake-interface-logger-plugins: init at 1.2.3
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
snakemake-interface-common,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "snakemake-interface-logger-plugins";
|
||||
version = "1.2.3";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "snakemake";
|
||||
repo = pname;
|
||||
tag = "v${version}";
|
||||
hash = "sha256-VHbta+R2a/K2L03IRu/Ya7dJzshIAvyK9cNIRbx8QqM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ hatchling ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
snakemake-interface-common
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "snakemake_interface_logger_plugins" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A stable interface for interactions between Snakemake and its logger plugins";
|
||||
homepage = "https://github.com/snakemake/snakemake-interface-logger-plugins";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ veprbl ];
|
||||
};
|
||||
}
|
||||
@@ -15943,6 +15943,10 @@ self: super: with self; {
|
||||
callPackage ../development/python-modules/snakemake-interface-executor-plugins
|
||||
{ };
|
||||
|
||||
snakemake-interface-logger-plugins =
|
||||
callPackage ../development/python-modules/snakemake-interface-logger-plugins
|
||||
{ };
|
||||
|
||||
snakemake-interface-report-plugins =
|
||||
callPackage ../development/python-modules/snakemake-interface-report-plugins
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user