Files
nixpkgs/pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

64 lines
1.4 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pyjwt
, pytestCheckHook
, python-dateutil
, pythonOlder
, requests
, responses
}:
buildPythonPackage rec {
pname = "ibm-cloud-sdk-core";
version = "3.16.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-TsM56eE2qCJsr+ZHTaY7Wd/ZjhFqWJXA7Z3O+2MCgPc=";
};
propagatedBuildInputs = [
pyjwt
python-dateutil
requests
];
nativeCheckInputs = [
pytestCheckHook
responses
];
disabledTests = [
# Various tests try to access credential files which are not included with the source distribution
"test_configure_service"
"test_cp4d_authenticator"
"test_cwd"
"test_files_dict"
"test_files_duplicate_parts"
"test_files_list"
"test_get_authenticator"
"test_gzip_compression_external"
"test_iam"
"test_read_external_sources_2"
"test_retry_config_external"
# assertion error due to requests brotli support
"test_http_client"
];
disabledTestPaths = [
"test/test_container_token_manager.py"
];
meta = with lib; {
description = "Client library for the IBM Cloud services";
homepage = "https://github.com/IBM/python-sdk-core";
changelog = "https://github.com/IBM/python-sdk-core/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ globin ];
};
}