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.
This commit is contained in:
Martin Weinelt
2021-04-23 02:12:04 +02:00
parent f129df86a1
commit af62869aee
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@
}:
buildPythonPackage rec {
pname = "python-slackclient";
pname = "slackclient";
version = "2.9.3";
disabled = !isPy3k;