Skip to content

Commit

Permalink
python3Packages.pyzmq: 25.1.2 -> 26.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Jun 24, 2024
1 parent d6ef160 commit edf481f
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions pkgs/development/python-modules/pyzmq/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
isPyPy,

# build-system
cffi,
cython,
setuptools,
setuptools-scm,
cmake,
ninja,
packaging,
cffi,
pathspec,
scikit-build-core,

# dependencies

py,
# checks
pytestCheckHook,
python,
pythonOlder,
Expand All @@ -24,25 +24,29 @@

buildPythonPackage rec {
pname = "pyzmq";
version = "25.1.2";
version = "26.0.3";
pyproject = true;

disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
hash = "sha256-k/GqMR6LuRLjTwBM8YZAek6Q7sTw7MDv0mBWv37aAiY=";
hash = "sha256-26fZ8uBH36K8o7AfT4SqUkZyUgPWKE43kPLKFfumtAo=";
};

nativeBuildInputs = [
setuptools
setuptools-scm
build-system = [
cmake
ninja
packaging
pathspec
scikit-build-core
] ++ (if isPyPy then [ cffi ] else [ cython ]);

dontUseCmakeConfigure = true;

buildInputs = [ zeromq ];

propagatedBuildInputs = lib.optionals isPyPy [ cffi ];
dependencies = lib.optionals isPyPy [ cffi ];

nativeCheckInputs = [
pytestCheckHook
Expand Down

0 comments on commit edf481f

Please sign in to comment.