python312Packages.hupper 1.12 -> 1.12.1 https://repology.org/project/python:hupper/versions attrpath: python312Packages.hupper 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/wswy5g6jhvm3kxnyvpp5si28h1dq3zyp-packages.json.drv building '/nix/store/wswy5g6jhvm3kxnyvpp5si28h1dq3zyp-packages.json.drv'... Going to be running update for following packages: - python3.12-hupper-1.12 Press Enter key to continue... Running update for: - python3.12-hupper-1.12: UPDATING ... - python3.12-hupper-1.12: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/hupper/default.nix b/pkgs/development/python-modules/hupper/default.nix index b0650310cc14..ccd9e5aa45e1 100644 --- a/pkgs/development/python-modules/hupper/default.nix +++ b/pkgs/development/python-modules/hupper/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "hupper"; - version = "1.12"; + version = "1.12.1"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-GLFlPZgyyfjn00AZhsfnryrmeDYWvgvEBr/gsUE0pcY="; + hash = "sha256-Br9UFw/07PTIStXxiN7jkBFzq0ScJgitBbm/1rE+Mus="; }; # FIXME: watchdog dependency is disabled on Darwin because of #31865, which causes very silent No auto update branch exists Old version 1.12" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , pytestCheckHook , watchdog }: buildPythonPackage rec { pname = "hupper"; version = "1.12.1"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-Br9UFw/07PTIStXxiN7jkBFzq0ScJgitBbm/1rE+Mus="; }; # FIXME: watchdog dependency is disabled on Darwin because of #31865, which causes very silent # segfaults in the testsuite that end up failing the tests in a background thread (in myapp) nativeCheckInputs = [ pytestCheckHook ] ++ lib.optionals (!stdenv.isDarwin) [ watchdog ]; disabledTestPaths = [ # Doesn't work with an exported home, RuntimeError: timeout waiting for change to file=/build/tmpgfn145cx "tests/test_it.py" ]; pythonImportsCheck = [ "hupper" ]; meta = with lib; { description = "In-process file monitor/reloader for reloading your code automatically during development"; homepage = "https://github.com/Pylons/hupper"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }