python3Packages.softlayer: 6.2.7 -> 6.2.9 (#556084)

This commit is contained in:
Fabian Affolter
2026-08-24 21:30:10 +00:00
committed by GitHub

View File

@@ -26,16 +26,16 @@
zeep,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "softlayer";
version = "6.2.7";
version = "6.2.9";
pyproject = true;
src = fetchFromGitHub {
owner = "softlayer";
repo = "softlayer-python";
tag = "v${version}";
hash = "sha256-mlC4o39Ol1ALguc9KGpxB0M0vhWz4LG2uwhW8CBrVgg=";
tag = "v${finalAttrs.version}";
hash = "sha256-kGgCW9N2NZi8PHcfpN+8L2bg7v1edP8ZXYaoSt9545M=";
};
build-system = [ setuptools ];
@@ -77,13 +77,18 @@ buildPythonPackage rec {
"tests/transports/soap_tests.py.unstable"
];
disabledTests = [
# AssertionError
"test_cf_call_large_dataset"
];
pythonImportsCheck = [ "SoftLayer" ];
meta = {
description = "Python libraries that assist in calling the SoftLayer API";
homepage = "https://github.com/softlayer/softlayer-python";
changelog = "https://github.com/softlayer/softlayer-python/releases/tag/${src.tag}";
changelog = "https://github.com/softlayer/softlayer-python/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onny ];
};
}
})