1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 10:36:36 +03:00
nixpkgs/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

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