nixpkgs/pkgs/development/python-modules/netdisco/default.nix
2020-08-16 19:31:08 +02:00

29 lines
703 B
Nix

{ stdenv, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
buildPythonPackage rec {
pname = "netdisco";
version = "2.8.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "05ca5a8a0be88aa1a919818b0c5208293aa1197518a561545c6947232ee22bc1";
};
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";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}