159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
py,
|
|
pytest-benchmark,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "getmac";
|
|
version = "0.9.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GhostofGoes";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ZbTCbbASs7+ChmgcDePXSbiHOst6/eCkq9SiKgYhFyM=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
py
|
|
pytestCheckHook
|
|
pytest-benchmark
|
|
pytest-mock
|
|
];
|
|
|
|
disabledTests = [
|
|
# Disable CLI tests
|
|
"test_cli_main_basic"
|
|
"test_cli_main_verbose"
|
|
"test_cli_main_debug"
|
|
"test_cli_multiple_debug_levels"
|
|
# Disable test that require network access
|
|
"test_uuid_lanscan_iface"
|
|
# Mocking issue
|
|
"test_initialize_method_cache_valid_types"
|
|
];
|
|
|
|
pythonImportsCheck = [ "getmac" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python package to get the MAC address of network interfaces and hosts on the local network";
|
|
mainProgram = "getmac";
|
|
homepage = "https://github.com/GhostofGoes/getmac";
|
|
changelog = "https://github.com/GhostofGoes/getmac/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ colemickens ];
|
|
};
|
|
}
|