depot/third_party/nixpkgs/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

33 lines
805 B
Nix

{
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 ];
};
}