aizeroconf: init at 0.1.8
This commit is contained in:
parent
5f968a70d2
commit
ed136f84ef
27
pkgs/development/python-modules/aiozeroconf/default.nix
Normal file
27
pkgs/development/python-modules/aiozeroconf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user