python310Packages.softlayer 0 -> 1 attrpath: python310Packages.softlayer Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rcy95qwybr6ir89g9332s8x40n434bhz-packages.json.drv building '/nix/store/rcy95qwybr6ir89g9332s8x40n434bhz-packages.json.drv'... Going to be running update for following packages: - python3.10-softlayer-6.1.3 Press Enter key to continue... Running update for: - python3.10-softlayer-6.1.3: UPDATING ... - python3.10-softlayer-6.1.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/softlayer/default.nix b/pkgs/development/python-modules/softlayer/default.nix index 25bc231b814..032b5827d25 100644 --- a/pkgs/development/python-modules/softlayer/default.nix +++ b/pkgs/development/python-modules/softlayer/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "softlayer"; - version = "6.1.3"; + version = "6.1.4"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = pname; repo = "softlayer-python"; rev = "refs/tags/v${version}"; - hash = "sha256-msNW0PeDbs5iq77FBPKKWH0js/PAQz6xfbM0ycMVg5U="; + hash = "sha256-Ofl8MmGn70CJPuPZi0W0GJiMiceMNMACSNVKaOPdQN8="; }; postPatch = '' No auto update branch exists Old version 6.1.3" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , click , fetchFromGitHub , mock , prettytable , prompt-toolkit , ptable , pygments , pytestCheckHook , pythonOlder , requests , rich , sphinx , testtools , tkinter , urllib3 , zeep }: buildPythonPackage rec { pname = "softlayer"; version = "6.1.4"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = pname; repo = "softlayer-python"; rev = "refs/tags/v${version}"; hash = "sha256-Ofl8MmGn70CJPuPZi0W0GJiMiceMNMACSNVKaOPdQN8="; }; postPatch = '' substituteInPlace setup.py \ --replace "rich ==" "rich >=" ''; propagatedBuildInputs = [ click prettytable prompt-toolkit ptable pygments requests rich urllib3 ]; nativeCheckInputs = [ mock pytestCheckHook sphinx testtools tkinter zeep ]; # Otherwise soap_tests.py will fail to create directory # Permission denied: '/homeless-shelter' preCheck = '' export HOME=$(mktemp -d) ''; disabledTestPaths = [ # Test fails with ConnectionError trying to connect to api.softlayer.com "tests/transports/soap_tests.py.unstable" ]; pythonImportsCheck = [ "SoftLayer" ]; meta = with lib; { description = "Python libraries that assist in calling the SoftLayer API"; homepage = "https://github.com/softlayer/softlayer-python"; changelog = "https://github.com/softlayer/softlayer-python/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ onny ]; }; }