python310Packages.slackclient 0 -> 1 attrpath: python310Packages.slackclient Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/0gyyxwk5m4s9k2x9bwsnyf7nl90pvz0x-packages.json.drv building '/nix/store/0gyyxwk5m4s9k2x9bwsnyf7nl90pvz0x-packages.json.drv'... Going to be running update for following packages: - python3.10-slackclient-3.20.0 Press Enter key to continue... Running update for: - python3.10-slackclient-3.20.0: UPDATING ... - python3.10-slackclient-3.20.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/slackclient/default.nix b/pkgs/development/python-modules/slackclient/default.nix index fefc841941d..22d1ce93f73 100644 --- a/pkgs/development/python-modules/slackclient/default.nix +++ b/pkgs/development/python-modules/slackclient/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { pname = "slackclient"; - version = "3.20.0"; + version = "3.20.1"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -32,7 +32,7 @@ buildPythonPackage rec { owner = "slackapi"; repo = "python-slack-sdk"; rev = "refs/tags/v${version}"; - hash = "sha256-NlUmoOlRV7h7d553uX2tAWi2aWCAqpHflSUrdZxlaws="; + hash = "sha256-etPNhGjLrXOwkM7m2Q1xGoGraBq/2tq58bWXqncHy+w="; }; propagatedBuildInputs = [ No auto update branch exists Old version 3.20.0" not present in master derivation file with contents: { lib , stdenv , aiohttp , boto3 , buildPythonPackage , fetchFromGitHub , flask , flask-sockets , pythonOlder , mock , moto , psutil , pytest-cov , pytest-mock , pytestCheckHook , pytest-runner , requests , responses , sqlalchemy , websockets , websocket-client }: buildPythonPackage rec { pname = "slackclient"; version = "3.20.1"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "slackapi"; repo = "python-slack-sdk"; rev = "refs/tags/v${version}"; hash = "sha256-etPNhGjLrXOwkM7m2Q1xGoGraBq/2tq58bWXqncHy+w="; }; propagatedBuildInputs = [ aiohttp websocket-client requests ]; nativeCheckInputs = [ boto3 flask flask-sockets mock moto psutil pytest-mock pytestCheckHook responses sqlalchemy websockets ]; # Exclude tests that requires network features pytestFlagsArray = [ "--ignore=integration_tests" ]; preCheck = '' export HOME=$(mktemp -d) ''; disabledTests = [ "test_start_raises_an_error_if_rtm_ws_url_is_not_returned" "test_interactions" "test_send_message_while_disconnection" ] ++ lib.optionals stdenv.isDarwin [ # these fail with `ConnectionResetError: [Errno 54] Connection reset by peer` "test_issue_690_oauth_access" "test_issue_690_oauth_v2_access" "test_send" "test_send_attachments" "test_send_blocks" "test_send_dict" ]; pythonImportsCheck = [ "slack" ]; meta = with lib; { description = "A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API"; homepage = "https://github.com/slackapi/python-slackclient"; changelog = "https://github.com/slackapi/python-slack-sdk/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ flokli psyanticy ]; }; }