2022-12-24T13:10:23 python310Packages.pyisy 0 -> 1 2022-12-24T13:10:25 attrpath: python310Packages.pyisy 2022-12-24T13:10:26 Checking auto update branch... 2022-12-24T13:10:30 [version] 2022-12-24T13:10:30 [version] skipping because derivation has updateScript 2022-12-24T13:10:30 [rustCrateVersion] 2022-12-24T13:10:30 [rustCrateVersion] No cargoSha256 found 2022-12-24T13:10:30 [golangModuleVersion] 2022-12-24T13:10:30 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-24T13:10:30 [updateScript] 2022-12-24T13:10:33 [updateScript] Success 2022-12-24T13:10:33 [updateScript] this derivation will be built: /nix/store/9v3rfp9h1wvjli0vjw13vd5bzwrcl0pz-packages.json.drv building '/nix/store/9v3rfp9h1wvjli0vjw13vd5bzwrcl0pz-packages.json.drv'... Going to be running update for following packages: - python3.10-pyisy-3.0.8 Press Enter key to continue... Running update for: - python3.10-pyisy-3.0.8: UPDATING ... - python3.10-pyisy-3.0.8: DONE. Packages updated! 2022-12-24T13:10:33 2022-12-24T13:10:33 [quotedUrls] 2022-12-24T13:10:33 [quotedUrls] nothing found to replace 2022-12-24T13:10:33 Diff after rewrites: diff --git a/pkgs/development/python-modules/pyisy/default.nix b/pkgs/development/python-modules/pyisy/default.nix index f6f812b96f8..26dab5b1c77 100644 --- a/pkgs/development/python-modules/pyisy/default.nix +++ b/pkgs/development/python-modules/pyisy/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "pyisy"; - version = "3.0.8"; + version = "3.0.9"; src = fetchFromGitHub { owner = "automicus"; repo = "PyISY"; rev = "refs/tags/v${version}"; - hash = "sha256-Q3KewvZJMq4YKrpS6ir5rqZkDhxGACDIhlbr3b6lDAs="; + hash = "sha256-95MUOxWR4YUce0fFcasKc6YjoSHTGhXJcUAg0mbXxCs="; }; postPatch = '' 2022-12-24T13:12:02 Old version 3.0.8" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , requests , python-dateutil , aiohttp }: buildPythonPackage rec { pname = "pyisy"; version = "3.0.9"; src = fetchFromGitHub { owner = "automicus"; repo = "PyISY"; rev = "refs/tags/v${version}"; hash = "sha256-95MUOxWR4YUce0fFcasKc6YjoSHTGhXJcUAg0mbXxCs="; }; postPatch = '' substituteInPlace setup.py \ --replace "setuptools-git-version" "" \ --replace 'version_format="{tag}"' 'version="${version}"' ''; propagatedBuildInputs = [ aiohttp python-dateutil requests ]; # no tests implemented doCheck = false; pythonImportsCheck = [ "pyisy" ]; meta = with lib; { description = "Python module to talk to ISY994 from UDI"; homepage = "https://github.com/automicus/PyISY"; license = licenses.asl20; maintainers = with maintainers; [ dotlambda ]; }; }