blob: 3a93f58f0d7096ba719feff907e301c82abf73a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
snakemake-interface-common,
}:
buildPythonPackage rec {
pname = "snakemake-interface-logger-plugins";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
repo = "snakemake-interface-logger-plugins";
tag = "v${version}";
hash = "sha256-GPf8FdoBHpyQADWvJ7jOF4PpLk6/Ui+nXIE/rUSIAg8=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
snakemake-interface-common
];
pythonImportsCheck = [ "snakemake_interface_logger_plugins" ];
meta = {
description = "Stable interface for interactions between Snakemake and its logger plugins";
homepage = "https://github.com/snakemake/snakemake-interface-logger-plugins";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ veprbl ];
};
}
|