nixpkgs/pkgs/development/python-modules/zeroconf/default.nix
2019-12-30 16:46:49 +01:00

38 lines
809 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, ifaddr
, typing
, isPy27
, pythonOlder
, python
}:
buildPythonPackage rec {
pname = "zeroconf";
version = "0.24.2";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "b9a75094a79767e8351e6c4ebdf165fc790307c93dbcadd763d46067eb99ff47";
};
propagatedBuildInputs = [ ifaddr ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
# tests not included with pypi release
doCheck = false;
checkPhase = ''
${python.interpreter} test_zeroconf.py
'';
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; [ abbradar ];
};
}