blob: f9e16e828652d7a4249949addedda097ff23429a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "nlpcloud";
version = "1.1.46";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-NmNu1Rf6mN+Q8FdpeNYQ508ksqkIV7oOp8CrlDN1qPU=";
};
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 ];
};
}
|