blob: 942da8601a291b9e78b65f705203f13fe640b3cc (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
snakemake-interface-common,
}:
buildPythonPackage rec {
pname = "snakemake-interface-report-plugins";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
repo = "snakemake-interface-report-plugins";
tag = "v${version}";
hash = "sha256-3ugEmdO1dcusKXXBZBRszlZXX5fhJyYSSF5Uj5CKJkQ=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ snakemake-interface-common ];
pythonImportsCheck = [ "snakemake_interface_report_plugins" ];
meta = {
description = "Interface for Snakemake report plugins";
homepage = "https://github.com/snakemake/snakemake-interface-report-plugins";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ veprbl ];
};
}
|