1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 poetry-core, 6 snakemake-interface-common, 7}: 8 9buildPythonPackage rec { 10 pname = "snakemake-interface-report-plugins"; 11 version = "1.2.0"; 12 format = "pyproject"; 13 14 src = fetchFromGitHub { 15 owner = "snakemake"; 16 repo = "snakemake-interface-report-plugins"; 17 tag = "v${version}"; 18 hash = "sha256-wyDJa8Pahe+ANSNqZ1BZRmljpabyXhLodMJhupjd3pY="; 19 }; 20 21 nativeBuildInputs = [ poetry-core ]; 22 23 propagatedBuildInputs = [ snakemake-interface-common ]; 24 25 pythonImportsCheck = [ "snakemake_interface_report_plugins" ]; 26 27 meta = with lib; { 28 description = "Interface for Snakemake report plugins"; 29 homepage = "https://github.com/snakemake/snakemake-interface-report-plugins"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ veprbl ]; 32 }; 33}