summary refs log tree commit diff
path: root/pkgs/development/python-modules/paho-mqtt/default.nix
blob: e8344e88f110ef8dff1ed3e28c09655e66cfbac1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k
, stdenv, pytest-runner, pytest, mock }:

buildPythonPackage rec {
  pname = "paho-mqtt";
  version = "1.5.1";

  # No tests in PyPI tarball
  src = fetchFromGitHub {
    owner = "eclipse";
    repo = "paho.mqtt.python";
    rev = "v${version}";
    sha256 = "1y537i6zxkjkmi80w5rvd18npz1jm5246i2x8p3q7ycx94i8ixs0";
  };

  postPatch = ''
    substituteInPlace setup.py --replace "pylama" ""
    substituteInPlace setup.cfg --replace "--pylama" ""
  '';

  checkInputs = [ pytest-runner pytest ] ++ lib.optional (!isPy3k) mock;

  doCheck = !stdenv.isDarwin;

  meta = with lib; {
    homepage = "https://eclipse.org/paho";
    description = "MQTT version 3.1.1 client class";
    license = licenses.epl10;
    maintainers = with maintainers; [ mog dotlambda ];
  };
}