depot/third_party/nixpkgs/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix

34 lines
805 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
snakemake-interface-common,
}:
buildPythonPackage rec {
pname = "snakemake-interface-report-plugins";
version = "1.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "snakemake";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-yk2fYlueaobXJgF7ob6jTccEz8r0geq1HFVsa+ZO30Q=";
};
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 ];
};
}