My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/paho-mqtt/default.nix

41 lines
727 B

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pytestCheckHook
, mock
, six
}:
buildPythonPackage rec {
pname = "paho-mqtt";
version = "1.6.1";
src = fetchFromGitHub {
owner = "eclipse";
repo = "paho.mqtt.python";
rev = "v${version}";
sha256 = "sha256-9nH6xROVpmI+iTKXfwv2Ar1PAmWbEunI3HO0pZyK6Rg=";
};
checkInputs = [
pytestCheckHook
six
] ++ lib.optional (!isPy3k) [
mock
];
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [
"paho.mqtt"
];
meta = with lib; {
description = "MQTT version 3.1.1 client class";
homepage = "https://eclipse.org/paho";
license = licenses.epl10;
maintainers = with maintainers; [ mog dotlambda ];
};
}