linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / netdisco / default.nix
blob489b6bddf5626b31b16d430b2116fc9948b07661
1 { lib, buildPythonPackage, isPy3k, fetchPypi, requests, zeroconf, netifaces, pytest }:
3 buildPythonPackage rec {
4   pname = "netdisco";
5   version = "2.8.2";
7   disabled = !isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "dcaabf83b204282aacfb213b18799eb7af2d5a6defe529487bbd0548036392fe";
12   };
14   propagatedBuildInputs = [ requests zeroconf netifaces ];
16   checkInputs = [ pytest ];
18   checkPhase = ''
19     py.test
20   '';
22   meta = with lib; {
23     description = "Python library to scan local network for services and devices";
24     homepage = "https://github.com/home-assistant/netdisco";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ dotlambda ];
27   };