summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiozeroconf/default.nix
blob: b89ba73b0d645d06bb08df9b13fd4b52592bb29d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, 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 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 ];
  };
}