about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiozeroconf
diff options
context:
space:
mode:
authorobadz <obadz-git@obadz.com>2019-05-04 20:06:43 +0100
committerobadz <obadz-git@obadz.com>2019-06-08 11:20:01 +0100
commited136f84efd327f599d3e24b9ff56d9784ab9e2f (patch)
tree7810b56cb7004b6d9c5c34d2d5da84281ab6247e /pkgs/development/python-modules/aiozeroconf
parent5f968a70d2fecef56b0235b7d654f848ef18c46d (diff)
aizeroconf: init at 0.1.8
Diffstat (limited to 'pkgs/development/python-modules/aiozeroconf')
-rw-r--r--pkgs/development/python-modules/aiozeroconf/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiozeroconf/default.nix b/pkgs/development/python-modules/aiozeroconf/default.nix
new file mode 100644
index 0000000000000..4dc9401d5306f
--- /dev/null
+++ b/pkgs/development/python-modules/aiozeroconf/default.nix
@@ -0,0 +1,27 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, netifaces
+, isPy27
+, python
+}:
+
+buildPythonPackage rec {
+  pname = "aiozeroconf";
+  version = "0.1.8";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "074plydm7sd113p3k0siihwwz62d3r42q3g83vqaffp569msknqh";
+  };
+
+  propagatedBuildInputs = [ netifaces ];
+
+  meta = with stdenv.lib; {
+    description = "A pure python implementation of multicast DNS service discovery";
+    homepage = https://github.com/jstasiak/python-zeroconf;
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ obadz ];
+  };
+}