22 buildPythonPackage rec {
25 disabled = pythonOlder "3.5";
27 src = fetchFromGitHub {
29 repo = "softlayer-python";
31 sha256 = "sha256-T49KVAsgcAZySkaJi47IrFcMHGZvEkGDjPWsdMarzwM=";
35 substituteInPlace setup.py \
36 --replace 'rich == 12.3.0' 'rich >= 12.3.0'
39 propagatedBuildInputs = [
59 # Otherwise soap_tests.py will fail to create directory
60 # Permission denied: '/homeless-shelter'
62 export HOME=$(mktemp -d)
66 # Test fails with ConnectionError trying to connect to api.softlayer.com
67 "tests/transports/soap_tests.py"
70 pythonImportsCheck = [ "SoftLayer" ];
73 description = "Python libraries that assist in calling the SoftLayer API";
74 homepage = "https://github.com/softlayer/softlayer-python";
75 license = licenses.mit;
76 maintainers = with maintainers; [ onny ];