mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
27 lines
582 B
Nix
27 lines
582 B
Nix
{ 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 ];
|
|
};
|
|
}
|