34 lines
826 B
Nix
34 lines
826 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
snakemake-interface-common,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snakemake-interface-report-plugins";
|
|
version = "1.2.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snakemake";
|
|
repo = "snakemake-interface-report-plugins";
|
|
tag = "v${version}";
|
|
hash = "sha256-wyDJa8Pahe+ANSNqZ1BZRmljpabyXhLodMJhupjd3pY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [ snakemake-interface-common ];
|
|
|
|
pythonImportsCheck = [ "snakemake_interface_report_plugins" ];
|
|
|
|
meta = with lib; {
|
|
description = "Interface for Snakemake report plugins";
|
|
homepage = "https://github.com/snakemake/snakemake-interface-report-plugins";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|