12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "GhostofGoes";
22 rev = "refs/tags/${version}";
23 hash = "sha256-ZbTCbbASs7+ChmgcDePXSbiHOst6/eCkq9SiKgYhFyM=";
36 "test_cli_main_verbose"
38 "test_cli_multiple_debug_levels"
39 # Disable test that require network access
40 "test_uuid_lanscan_iface"
42 "test_initialize_method_cache_valid_types"
45 pythonImportsCheck = [ "getmac" ];
48 description = "Python package to get the MAC address of network interfaces and hosts on the local network";
49 mainProgram = "getmac";
50 homepage = "https://github.com/GhostofGoes/getmac";
51 changelog = "https://github.com/GhostofGoes/getmac/blob/${version}/CHANGELOG.md";
52 license = licenses.mit;
53 maintainers = with maintainers; [ colemickens ];