Unverified Commit a1aeefc2 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

snakefmt: 0.10.2 -> 0.11.0 (#392121)

parents 26868985 6e751da3
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "snakefmt";
  version = "0.10.2";
  version = "0.11.0";
  pyproject = true;

  disabled = python3.pythonOlder "3.8.1";
  disabled = python3.pythonOlder "3.11";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-QoalkDtm2n5SdjxegYTaTtyVETt1j0RIUogE+1T5t1o=";
    hash = "sha256-r8O5LhA8/agP/35381f2zB2rdCJy7nY0K6NC8w5yHzA=";
  };

  build-system = [ python3.pkgs.poetry-core ];
@@ -27,6 +27,8 @@ python3.pkgs.buildPythonApplication rec {
    toml
  ];

  pythonRelaxDeps = [ "black" ];

  pythonImportsCheck = [ "snakefmt" ];

  nativeInstallCheckInputs = [ versionCheckHook ];