python311Packages.yarl 1.9.2 -> 1.9.4 https://repology.org/project/python:yarl/versions attrpath: python311Packages.yarl Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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] Going to be running update for following packages: - python3.11-yarl-1.9.2 Press Enter key to continue... Running update for: - python3.11-yarl-1.9.2: UPDATING ... - python3.11-yarl-1.9.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/yarl/default.nix b/pkgs/development/python-modules/yarl/default.nix index c4d8dac9995c..f137ed25b455 100644 --- a/pkgs/development/python-modules/yarl/default.nix +++ b/pkgs/development/python-modules/yarl/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "yarl"; - version = "1.9.2"; + version = "1.9.4"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-BKudS59YfAbYAcKr/pMXt3zfmWxlqQ1ehOzEUBCCNXE="; + hash = "sha256-Vm24ZxfPgIC5m1iwg7dzqQiuQPBmgeh+WJqXb6+CRr8="; }; patches = [ No auto update branch exists Old version 1.9.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder , cython_3 , expandvars , setuptools , idna , multidict , typing-extensions , pytest-xdist , pytestCheckHook }: buildPythonPackage rec { pname = "yarl"; version = "1.9.4"; disabled = pythonOlder "3.7"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-Vm24ZxfPgIC5m1iwg7dzqQiuQPBmgeh+WJqXb6+CRr8="; }; postPatch = '' sed -i '/cov/d' pytest.ini ''; nativeBuildInputs = [ cython_3 expandvars setuptools ]; propagatedBuildInputs = [ idna multidict ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; preCheck = '' # don't import yarl from ./ so the C extension is available pushd tests ''; nativeCheckInputs = [ pytest-xdist pytestCheckHook ]; postCheck = '' popd ''; pythonImportsCheck = [ "yarl" ]; meta = with lib; { changelog = "https://github.com/aio-libs/yarl/blob/v${version}/CHANGES.rst"; description = "Yet another URL library"; homepage = "https://github.com/aio-libs/yarl"; license = licenses.asl20; maintainers = with maintainers; [ dotlambda ]; }; }