python3Packages.nlpcloud: init at 1.0.41

This commit is contained in:
natsukium 2023-05-07 15:06:12 +09:00 committed by Yt
parent 58970f4c1e
commit 4dec52e0d4
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "nlpcloud";
version = "1.0.41";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-LtwN1fF/lfvXrB30P0VvuVGnsG8p1ZAalDCYL/a9uGE=";
};
propagatedBuildInputs = [
requests
];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [
"nlpcloud"
];
meta = with lib; {
description = "Python client for the NLP Cloud API";
homepage = "https://nlpcloud.com/";
changelog = "https://github.com/nlpcloud/nlpcloud-python/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ natsukium ];
};
}

View File

@ -6664,6 +6664,8 @@ self: super: with self; {
nkdfu = callPackage ../development/python-modules/nkdfu { };
nlpcloud = callPackage ../development/python-modules/nlpcloud { };
nltk = callPackage ../development/python-modules/nltk { };
nnpdf = toPythonModule (pkgs.nnpdf.override {