python312Packages.nlpcloud: 1.1.46 -> 1.1.47

This commit is contained in:
R. Ryantm
2024-12-04 20:21:05 +09:00
committed by natsukium
parent 7746ea9889
commit 9a5c7f9e10
@@ -2,20 +2,23 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "nlpcloud";
version = "1.1.46";
format = "setuptools";
version = "1.1.47";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NmNu1Rf6mN+Q8FdpeNYQ508ksqkIV7oOp8CrlDN1qPU=";
hash = "sha256-zj6hurPEzNlbrD6trq+zQHBNg4lJMGw+XHV51rBa9Mk=";
};
propagatedBuildInputs = [ requests ];
build-system = [ setuptools ];
dependencies = [ requests ];
# upstream has no tests
doCheck = false;