python312Packages.ptpython 3.0.23 -> 3.0.26 https://repology.org/project/python:ptpython/versions attrpath: python312Packages.ptpython 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/63hn3hq8c5hjniq6d069x9nim1j3f4ws-packages.json.drv building '/nix/store/63hn3hq8c5hjniq6d069x9nim1j3f4ws-packages.json.drv'... Going to be running update for following packages: - python3.12-ptpython-3.0.23 Press Enter key to continue... Running update for: - python3.12-ptpython-3.0.23: UPDATING ... - python3.12-ptpython-3.0.23: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ptpython/default.nix b/pkgs/development/python-modules/ptpython/default.nix index 9db2e9c1d2c0..437608956649 100644 --- a/pkgs/development/python-modules/ptpython/default.nix +++ b/pkgs/development/python-modules/ptpython/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "ptpython"; - version = "3.0.23"; + version = "3.0.26"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-n8m+wsxRvEAAwSJNjFYkHOikBrPUnsjcJm94zTzQS6Q="; + hash = "sha256-yPsUBlAtw0nZnFfq8G5xFvOy3qyU8C80K65ocIkJ90M="; }; propagatedBuildInputs = [ No auto update branch exists Old version 3.0.23" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , appdirs , importlib-metadata , jedi , prompt-toolkit , pygments }: buildPythonPackage rec { pname = "ptpython"; version = "3.0.26"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-yPsUBlAtw0nZnFfq8G5xFvOy3qyU8C80K65ocIkJ90M="; }; propagatedBuildInputs = [ appdirs jedi prompt-toolkit pygments ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; # no tests to run doCheck = false; pythonImportsCheck = [ "ptpython" ]; meta = with lib; { description = "An advanced Python REPL"; homepage = "https://github.com/prompt-toolkit/ptpython"; changelog = "https://github.com/prompt-toolkit/ptpython/blob/${version}/CHANGELOG"; license = licenses.bsd3; maintainers = with maintainers; [ mlieberman85 ]; }; }