Files
nixpkgs/pkgs/development/python-modules/netdisco/default.nix
T

29 lines
703 B
Nix
Raw Normal View History

2018-10-29 13:44:00 +01:00
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
2018-01-13 21:53:41 +01:00
buildPythonPackage rec {
pname = "netdisco";
2020-08-29 13:41:50 +02:00
version = "2.8.2";
2018-01-13 21:53:41 +01:00
disabled = !isPy3k;
2018-10-29 13:44:00 +01:00
src = fetchPypi {
inherit pname version;
2020-08-29 13:41:50 +02:00
sha256 = "dcaabf83b204282aacfb213b18799eb7af2d5a6defe529487bbd0548036392fe";
};
2018-01-13 21:53:41 +01: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";
homepage = "https://github.com/home-assistant/netdisco";
2018-01-13 21:53:41 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}