Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.slackclient: fix pname

The python package is called slackclient, as can be seen in setup.py for
this version.

https://github.com/slackapi/python-slack-sdk/blob/v2.9.3/setup.py?rgh-link-date=2021-04-23T00%3A03%3A28Z#L217

This prevented home-assistant tooling from finding the package and
providing support for the component.

+2 -2
+1 -1
pkgs/development/python-modules/slackclient/default.nix
··· 18 18 }: 19 19 20 20 buildPythonPackage rec { 21 - pname = "python-slackclient"; 21 + pname = "slackclient"; 22 22 version = "2.9.3"; 23 23 24 24 disabled = !isPy3k;
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 750 750 "sky_hub" = ps: with ps; [ ]; # missing inputs: pyskyqhub 751 751 "skybeacon" = ps: with ps; [ ]; # missing inputs: pygatt[GATTTOOL] 752 752 "skybell" = ps: with ps; [ skybellpy ]; 753 - "slack" = ps: with ps; [ ]; # missing inputs: slackclient 753 + "slack" = ps: with ps; [ slackclient ]; 754 754 "sleepiq" = ps: with ps; [ sleepyq ]; 755 755 "slide" = ps: with ps; [ ]; # missing inputs: goslide-api 756 756 "sma" = ps: with ps; [ pysma ];