aizeroconf: init at 0.1.8

This commit is contained in:
obadz 2019-05-04 20:06:43 +01:00
parent 5f968a70d2
commit ed136f84ef
2 changed files with 29 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -1029,6 +1029,8 @@ in {
aiounifi = callPackage ../development/python-modules/aiounifi { };
aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };
ajpy = callPackage ../development/python-modules/ajpy { };
alabaster = callPackage ../development/python-modules/alabaster {};