2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
|
2018-01-13 20:53:41 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "netdisco";
|
2020-08-29 12:41:50 +01:00
|
|
|
version = "2.8.2";
|
2018-01-13 20:53:41 +00:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-10-29 12:44:00 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-29 12:41:50 +01:00
|
|
|
sha256 = "dcaabf83b204282aacfb213b18799eb7af2d5a6defe529487bbd0548036392fe";
|
2018-02-27 16:40:42 +00:00
|
|
|
};
|
|
|
|
|
2018-01-13 20:53:41 +00:00
|
|
|
propagatedBuildInputs = [ requests zeroconf netifaces ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-13 20:53:41 +00:00
|
|
|
description = "Python library to scan local network for services and devices";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/home-assistant/netdisco";
|
2018-01-13 20:53:41 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|