summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew O'Gorman <mog@rldn.net>2016-01-18 13:35:07 -0500
committerMatthew O'Gorman <mog@rldn.net>2016-01-18 13:35:07 -0500
commit34c1f87750a34f6c0b089e5e76eb9370a341f72b (patch)
treec9d1ed0243a61f0ea550efc995c366c88ce54411
parent5160c8887ee8b18955ff50fd7decd34a40a0356d (diff)
downloadnixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.tar
nixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.tar.gz
nixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.tar.bz2
nixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.tar.lz
nixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.tar.xz
nixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.tar.zst
nixlib-34c1f87750a34f6c0b089e5e76eb9370a341f72b.zip
paho-mqtt: init at 1.1
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 41f0afd9e705..598863c31d75 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -13788,6 +13788,25 @@ in modules // {
     propagatedBuildInputs = [self.numpy];
   };
 
+  paho-mqtt = buildPythonPackage rec {
+    name = "paho-mqtt-${version}";
+    version = "1.1";
+
+    disabled = isPyPy || isPy26;
+
+    src = pkgs.fetchurl {
+        url = "https://pypi.python.org/packages/source/p/paho-mqtt/${name}.tar.gz";
+        sha256 = "07i6k9mw66kgbvjgsrcsd2sjji9ckym50dcxnmhjqfkfzsg64yhg";
+    };
+
+    meta = {
+      homepage = "https://eclipse.org/paho/";
+      description = "mqtt library for machine to machine and internet of things";
+      license = licenses.epl10;
+      maintainers = with maintainers; [ mog ];
+    };
+  };
+
   parsedatetime = buildPythonPackage rec {
     name = "parsedatetime-${version}";
     version = "1.4";