depot/third_party/nixpkgs/pkgs/development/python-modules/ibm-watson/default.nix
Default email 73a29e0b97 Project import generated by Copybara.
GitOrigin-RevId: 5bb20f9dc70e9ee16e21cc404b6508654931ce41
2022-01-27 10:19:43 +10:00

60 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, responses
, pytestCheckHook
, python-dotenv
, pytest-rerunfailures
, tox
, requests
, python-dateutil
, websocket-client
, ibm-cloud-sdk-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "ibm-watson";
version = "5.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "watson-developer-cloud";
repo = "python-sdk";
rev = "v${version}";
sha256 = "1x6r8j0xyi81jb0q4pzr6l7aglykrwqz8nw45clv79v33i2sgdcs";
};
propagatedBuildInputs = [
requests
python-dateutil
websocket-client
ibm-cloud-sdk-core
];
checkInputs = [
responses
pytestCheckHook
python-dotenv
pytest-rerunfailures
tox
];
postPatch = ''
substituteInPlace setup.py \
--replace websocket-client==1.1.0 websocket-client>=1.1.0
'';
pythonImportsCheck = [
"ibm_watson"
];
meta = with lib; {
description = "Client library to use the IBM Watson Services";
homepage = "https://github.com/watson-developer-cloud/python-sdk";
license = licenses.asl20;
maintainers = with maintainers; [ globin lheckemann ];
};
}