39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, fetchpatch, requests, zeroconf, netifaces, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "netdisco";
|
|
version = "1.2.4";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
# PyPI is missing tests/ directory
|
|
src = fetchFromGitHub {
|
|
owner = "home-assistant";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "170s9py8rw07cfgwvv7mf69g8jjg32m2rgw8x3kbvjqlmrdijxmm";
|
|
};
|
|
|
|
# Allow newer zeroconf versions
|
|
patches = fetchpatch {
|
|
url = "${meta.homepage}/commit/78f83046a2a0d77527274c8be9c3fd75737c19d0.patch";
|
|
sha256 = "098zkwqg9181vavw97yhi9rsdsf023gnapg4gkr1n0awz3f3l9nm";
|
|
};
|
|
|
|
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;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|