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

29 lines
701 B
Nix
Raw Normal View History

2018-10-29 12:44:00 +00:00
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
buildPythonPackage rec {
pname = "netdisco";
2019-01-10 12:43:19 +00:00
version = "2.3.0";
disabled = !isPy3k;
2018-10-29 12:44:00 +00:00
src = fetchPypi {
inherit pname version;
2019-01-10 12:43:19 +00:00
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 ];
};
}