mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
28 lines
599 B
Nix
28 lines
599 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, netifaces
|
|
, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiozeroconf";
|
|
version = "0.1.8";
|
|
format = "setuptools";
|
|
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 ];
|
|
};
|
|
}
|