python3Packages.pyzmq: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-08-24 10:32:31 +02:00
parent ffe2e13bad
commit 08994be3c7

View File

@@ -21,13 +21,13 @@
pytest-asyncio,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyzmq";
version = "27.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-VNQlnRv64k7Ntcp596zC6sbChqAtagrmF3l8tF8HJtM=";
};
@@ -85,10 +85,11 @@ buildPythonPackage rec {
meta = {
description = "Python bindings for ØMQ";
homepage = "https://pyzmq.readthedocs.io/";
changelog = "https://pyzmq.readthedocs.io/en/latest/changelog.html";
license = with lib.licenses; [
bsd3 # or
lgpl3Only
];
maintainers = [ ];
};
}
})