Files
nixpkgs/pkgs/development/python-modules/paho-mqtt/default.nix
T
Robert Schütz 1fd9c06c6e python312Packages.paho-mqtt_2: init at 2.1.0
https://github.com/eclipse/paho.mqtt.python/compare/v1.6.1...v2.1.0
https://github.com/eclipse/paho.mqtt.python/blob/v2.1.0/ChangeLog.txt

The ecosystem is still too fragile to promote paho-mqtt 2.x to the
version used in the python package set, but we can provide 2.x for
applications in nixpkgs.

Co-Authored-By: Robert Scott <code@humanleg.org.uk>
Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
2024-07-07 16:57:01 +02:00

62 lines
1.2 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
let
testing = fetchFromGitHub {
owner = "eclipse";
repo = "paho.mqtt.testing";
rev = "a4dc694010217b291ee78ee13a6d1db812f9babd";
hash = "sha256-SQoNdkWMjnasPjpXQF2yV97MUra8gb27pc3rNoA8Rjw=";
};
in buildPythonPackage rec {
pname = "paho-mqtt";
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "eclipse";
repo = "paho.mqtt.python";
rev = "v${version}";
hash = "sha256-VMq+WTW+njK34QUUTE6fR2j2OmHxVzR0wrC92zYb1rY=";
};
build-system = [
hatchling
];
nativeCheckInputs = [
pytestCheckHook
];
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [ "paho.mqtt" ];
preCheck = ''
ln -s ${testing} paho.mqtt.testing
# paho.mqtt not in top-level dir to get caught by this
export PYTHONPATH=".:$PYTHONPATH"
'';
meta = with lib; {
changelog = "https://github.com/eclipse/paho.mqtt.python/blob/${src.rev}/ChangeLog.txt";
description = "MQTT version 5.0/3.1.1 client class";
homepage = "https://eclipse.org/paho";
license = licenses.epl20;
maintainers = with maintainers; [
mog
dotlambda
];
};
}