My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/aiozeroconf/default.nix

26 lines
574 B

{ lib
, buildPythonPackage
, fetchPypi
, netifaces
, isPy27
}:
buildPythonPackage rec {
pname = "aiozeroconf";
version = "0.1.8";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "074plydm7sd113p3k0siihwwz62d3r42q3g83vqaffp569msknqh";
};
propagatedBuildInputs = [ netifaces ];
meta = with 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 ];
};
}