nixpkgs/pkgs/development/python-modules/netdisco/default.nix
2019-01-10 13:43:19 +01:00

29 lines
701 B
Nix

{ stdenv, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
buildPythonPackage rec {
pname = "netdisco";
version = "2.3.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "2571fc094f3bf8c60be211e90474515f565f3ef1c92e857176daab8577493a3b";
};
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 ];
};
}