python311Packages.pyzmq 0 -> 1 attrpath: python311Packages.pyzmq 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/pzcr8bppmsg590jgnj1zpmsg9ixlxd03-packages.json.drv building '/nix/store/pzcr8bppmsg590jgnj1zpmsg9ixlxd03-packages.json.drv'... Going to be running update for following packages: - python3.11-pyzmq-25.1.1 Press Enter key to continue... Running update for: - python3.11-pyzmq-25.1.1: UPDATING ... - python3.11-pyzmq-25.1.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pyzmq/default.nix b/pkgs/development/python-modules/pyzmq/default.nix index 442577fcc5e3..0493381718c1 100644 --- a/pkgs/development/python-modules/pyzmq/default.nix +++ b/pkgs/development/python-modules/pyzmq/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "pyzmq"; - version = "25.1.1"; + version = "25.1.2"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-JZwiSFtxq6zfqL95cgzXvPS50SizDqVU8BrnH9v9qiM="; + hash = "sha256-k/GqMR6LuRLjTwBM8YZAek6Q7sTw7MDv0mBWv37aAiY="; }; nativeBuildInputs = [ No auto update branch exists Old version 25.1.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , isPyPy # build-system , cython_3 , setuptools , setuptools-scm , packaging , cffi # dependencies , py , pytestCheckHook , python , pythonOlder , tornado , zeromq , pytest-asyncio }: buildPythonPackage rec { pname = "pyzmq"; version = "25.1.2"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-k/GqMR6LuRLjTwBM8YZAek6Q7sTw7MDv0mBWv37aAiY="; }; nativeBuildInputs = [ setuptools setuptools-scm packaging ] ++ (if isPyPy then [ cffi ] else [ cython_3 ]); buildInputs = [ zeromq ]; propagatedBuildInputs = lib.optionals isPyPy [ cffi ]; nativeCheckInputs = [ pytestCheckHook tornado pytest-asyncio ]; pythonImportsCheck = [ "zmq" ]; pytestFlagsArray = [ "$out/${python.sitePackages}/zmq/tests/" # Folder with tests # pytest.ini is missing in pypi's sdist # https://github.com/zeromq/pyzmq/issues/1853#issuecomment-1592731986 "--asyncio-mode auto" "--ignore=$out/lib/python3.12/site-packages/zmq/tests/test_mypy.py" ]; disabledTests = [ # Tests hang "test_socket" "test_monitor" # https://github.com/zeromq/pyzmq/issues/1272 "test_cython" # Test fails "test_mockable" # Issues with the sandbox "TestFutureSocket" "TestIOLoop" "TestPubLog" ]; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; meta = with lib; { description = "Python bindings for ØMQ"; homepage = "https://pyzmq.readthedocs.io/"; license = with licenses; [ bsd3 /* or */ lgpl3Only ]; maintainers = with maintainers; [ ]; }; }