9 buildPythonPackage rec {
10 pname = "mac-vendor-lookup";
12 format = "setuptools";
14 src = fetchFromGitHub {
16 repo = "mac_vendor_lookup";
17 rev = "90dbea48f8a9d567b5f9039ebd151ddfe7d12a19";
18 hash = "sha256-mPPJDrWdyvkTdb4WfeTNYwuC+Ek9vH7ORKRTREg+vK8=";
22 sed -i '/mac-vendors.txt/d' setup.py
25 propagatedBuildInputs = [
30 doCheck = false; # no tests
32 pythonImportsCheck = [ "mac_vendor_lookup" ];
35 description = "Find the vendor for a given MAC address";
36 mainProgram = "mac_vendor_lookup";
37 homepage = "https://github.com/bauerj/mac_vendor_lookup";
38 license = licenses.asl20;
39 maintainers = with maintainers; [ hexa ];