python310Packages.pyzmq 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/qi60l3321rcj8qh7bdi5mjm3mgndp83n-packages.json.drv building '/nix/store/qi60l3321rcj8qh7bdi5mjm3mgndp83n-packages.json.drv'... Going to be running update for following packages: - python3.10-pyzmq-23.2.1 Press Enter key to continue... Running update for: - python3.10-pyzmq-23.2.1: UPDATING ... - python3.10-pyzmq-23.2.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pyzmq/default.nix b/pkgs/development/python-modules/pyzmq/default.nix index 480247d01bb..af8131306f7 100644 --- a/pkgs/development/python-modules/pyzmq/default.nix +++ b/pkgs/development/python-modules/pyzmq/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pyzmq"; - version = "23.2.1"; + version = "24.0.1"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-KzgaqGfs59CoLzCgx/PUOHt88uBpfjPvqlvtbFeEq80="; + hash = "sha256-IW9dfbtnFmdZ5ZsEebyoK4rPm+1gFbUmuOsQFD+wjnc="; }; buildInputs = [ No auto update branch exists Old version 23.2.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , py , pytestCheckHook , python , pythonOlder , tornado , zeromq }: buildPythonPackage rec { pname = "pyzmq"; version = "24.0.1"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-IW9dfbtnFmdZ5ZsEebyoK4rPm+1gFbUmuOsQFD+wjnc="; }; buildInputs = [ zeromq ]; propagatedBuildInputs = [ py ]; checkInputs = [ pytestCheckHook tornado ]; pythonImportsCheck = [ "zmq" ]; pytestFlagsArray = [ "$out/${python.sitePackages}/zmq/tests/" # Folder with tests ]; 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; [ ]; }; }