Unverified Commit ab6d4a7a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.slack-bolt: 1.27.0 -> 1.28.0 (#509387)

parents 3beee73d d25d786f
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -39,16 +39,16 @@
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "slack-bolt";
  version = "1.27.0";
  version = "1.28.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "slackapi";
    repo = "bolt-python";
    tag = "v${version}";
    hash = "sha256-3aYsISTNc2uexzpIiBNnw40XegczL5BdKqi6j9K/A80=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-1AJO7+7YG/NFh6Rmqwkm6yua2LWdYQ9Rv1oadfHAlhE=";
  };

  build-system = [ setuptools ];
@@ -89,7 +89,7 @@ buildPythonPackage rec {
    pytestCheckHook
    writableTmpDirAsHomeHook
  ]
  ++ lib.concatAttrValues optional-dependencies;
  ++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);

  __darwinAllowLocalNetworking = true;

@@ -108,8 +108,8 @@ buildPythonPackage rec {
  meta = {
    description = "Framework to build Slack apps using Python";
    homepage = "https://github.com/slackapi/bolt-python";
    changelog = "https://github.com/slackapi/bolt-python/releases/tag/${src.tag}";
    changelog = "https://github.com/slackapi/bolt-python/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ samuela ];
  };
}
})