Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
577 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
version = "0.2.0";
format = "setuptools";
pname = "ifaddr";
src = fetchPypi {
inherit pname version;
hash = "sha256-zAy/yqv3ZdRFlYJfuWqZuxLHlxa3O0QzDqOO4rDErtQ=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ifaddr" ];
meta = with lib; {
homepage = "https://github.com/pydron/ifaddr";
description = "Enumerates all IP addresses on all network adapters of the system";
license = licenses.mit;
maintainers = [ ];
};
}