summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ifconfig-parser/default.nix
blob: 4ebebda38490dbe6c34b4114fa9aa9e2ce156858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage {
  pname = "ifconfig-parser";
  version = "0.0.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "KnightWhoSayNi";
    repo = "ifconfig-parser";
    rev = "4921ac9d6be6244b062d082c164f5a5e69522478";
    hash = "sha256-TXa7oQ8AyTIdaSK4SH+RN2bDPtVqNvofPvlqHPKaCx4=";
  };

  build-system = [ setuptools ];

  checkPhase = ''
    export PYTHONPATH=$PYTHONPATH:$(pwd)/ifconfigparser:$(pwd)/ifconfigparser/tests
    python -m unittest -v test_ifconfig_parser.TestIfconfigParser
  '';

  pythonImportsCheck = [ "ifconfigparser" ];

  meta = {
    description = "Module for parsing raw output of ifconfig";
    homepage = "https://github.com/KnightWhoSayNi/ifconfig-parser";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ atemu ];
  };
}