watson: use expected pname in NixOS package

This commit is contained in:
Nathan Yong 2019-07-01 13:18:56 +10:00
parent f7710fdd8e
commit 50855c5141

View File

@ -3,11 +3,12 @@
with pythonPackages; with pythonPackages;
buildPythonApplication rec { buildPythonApplication rec {
pname = "td-watson"; pname = "watson";
version = "1.7.0"; version = "1.7.0";
src = fetchPypi { src = fetchPypi {
inherit version pname; inherit version;
pname = "td-watson";
sha256 = "249313996751f32f38817d424cbf8d74956461df1439f0ee3a962fcc3c77225d"; sha256 = "249313996751f32f38817d424cbf8d74956461df1439f0ee3a962fcc3c77225d";
}; };