Commit f0ce7ff0 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 49a38230
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -10,19 +10,19 @@

buildPythonPackage rec {
  pname = "snakemake-interface-executor-plugins";
  version = "9.2.0";
  format = "pyproject";
  version = "9.3.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "snakemake";
    repo = pname;
    repo = "snakemake-interface-executor-plugins";
    rev = "refs/tags/v${version}";
    hash = "sha256-WMbJP17YnDzFVcr6YepT5Ltw+Jo6PPn7ayIrjx2k+go=";
    hash = "sha256-3XdsEnL+kuYhNOeAxkAsjTJ2R6NOtq97zPhQg9kdFkI=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [
  dependencies = [
    argparse-dataclass
    throttler
    snakemake-interface-common
@@ -30,10 +30,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "snakemake_interface_executor_plugins" ];

  meta = with lib; {
  meta = {
    description = "This package provides a stable interface for interactions between Snakemake and its executor plugins";
    homepage = "https://github.com/snakemake/snakemake-interface-executor-plugins";
    license = licenses.mit;
    maintainers = with maintainers; [ veprbl ];
    changelog = "https://github.com/snakemake/snakemake-interface-executor-plugins/blob/${src.rev}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ veprbl ];
  };
}