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-04-03 12:13:30 +00:00
version = "2.6.0";
disabled = !isPy3k;
2018-10-29 12:44:00 +00:00
src = fetchPypi {
inherit pname version;
2019-04-03 12:13:30 +00:00
sha256 = "2b3aca14a1807712a053f11fd80dc251dd821ee4899aefece515287981817762";
};
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 ];
};
}