2022-12-08T20:29:21 python310Packages.psrpcore 0 -> 1 2022-12-08T20:29:23 attrpath: python310Packages.psrpcore 2022-12-08T20:29:23 Checking auto update branch... 2022-12-08T20:29:27 [version] 2022-12-08T20:29:27 [version] skipping because derivation has updateScript 2022-12-08T20:29:27 [rustCrateVersion] 2022-12-08T20:29:27 [rustCrateVersion] No cargoSha256 found 2022-12-08T20:29:27 [golangModuleVersion] 2022-12-08T20:29:27 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-08T20:29:27 [updateScript] 2022-12-08T20:29:30 [updateScript] Success 2022-12-08T20:29:30 [updateScript] this derivation will be built: /nix/store/v3zxb1759248zkvr09bj5rffdsxckg17-packages.json.drv building '/nix/store/v3zxb1759248zkvr09bj5rffdsxckg17-packages.json.drv'... Going to be running update for following packages: - python3.10-psrpcore-0.1.2 Press Enter key to continue... Running update for: - python3.10-psrpcore-0.1.2: UPDATING ... - python3.10-psrpcore-0.1.2: DONE. Packages updated! 2022-12-08T20:29:30 2022-12-08T20:29:30 [quotedUrls] 2022-12-08T20:29:30 [quotedUrls] nothing found to replace 2022-12-08T20:29:30 Diff after rewrites: diff --git a/pkgs/development/python-modules/psrpcore/default.nix b/pkgs/development/python-modules/psrpcore/default.nix index 41c514d2ca6..d743c2023e5 100644 --- a/pkgs/development/python-modules/psrpcore/default.nix +++ b/pkgs/development/python-modules/psrpcore/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "psrpcore"; - version = "0.1.2"; + version = "0.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -17,8 +17,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "jborean93"; repo = pname; - rev = "v${version}"; - hash = "sha256-f1NGE+wSgi8yqBicZZRfUqzinsqazuIaoAje2y+dK1w="; + rev = "refs/tags/v${version}"; + hash = "sha256-uX99BsQn1Ckl+2Lt4I0EMZLTKeDrX0mtSc9w5aFpvxQ="; }; propagatedBuildInputs = [ 2022-12-08T20:31:00 Old version 0.1.2" not present in master derivation file with contents: { lib , buildPythonPackage , cryptography , fetchFromGitHub , pytestCheckHook , pythonOlder , xmldiff }: buildPythonPackage rec { pname = "psrpcore"; version = "0.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "jborean93"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-uX99BsQn1Ckl+2Lt4I0EMZLTKeDrX0mtSc9w5aFpvxQ="; }; propagatedBuildInputs = [ cryptography ]; checkInputs = [ pytestCheckHook xmldiff ]; pythonImportsCheck = [ "psrpcore" ]; meta = with lib; { description = "Library for the PowerShell Remoting Protocol (PSRP)"; homepage = "https://github.com/jborean93/psrpcore"; changelog = "https://github.com/jborean93/psrpcore/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }