bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
33 lines
805 B
Nix
33 lines
805 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
snakemake-interface-common,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snakemake-interface-report-plugins";
|
|
version = "1.0.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snakemake";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-30x4avA3FrqZ4GoTl6Js5h3VG5LW7BNHOcNWxznXoT0=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|