2018-10-29 05:44:00 -07:00
|
|
|
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
|
2018-01-13 12:53:41 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "netdisco";
|
2020-07-06 06:10:00 -07:00
|
|
|
version = "2.7.1";
|
2018-01-13 12:53:41 -08:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-10-29 05:44:00 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-06 06:10:00 -07:00
|
|
|
sha256 = "0rkaz9377f4ldxcqxcmcc9hwdv5dda8nl7vrnp2pj3ppivq5629w";
|
2018-02-27 08:40:42 -08:00
|
|
|
};
|
|
|
|
|
2018-01-13 12:53:41 -08:00
|
|
|
propagatedBuildInputs = [ requests zeroconf netifaces ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python library to scan local network for services and devices";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/home-assistant/netdisco";
|
2018-01-13 12:53:41 -08:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|