summary refs log tree commit diff
path: root/pkgs/development/python-modules/ifconfig-parser/default.nix
blob: bdfd3767f8c45738a0b93449d0414e7fa4ef4ff6 (plain) (blame)
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
{ lib, stdenv, buildPythonPackage, fetchFromGitHub }:

buildPythonPackage rec {
  pname = "ifconfig-parser";
  version = "0.0.5";

  src = fetchFromGitHub {
    owner = "KnightWhoSayNi";
    repo = pname;
    rev = "4921ac9d6be6244b062d082c164f5a5e69522478";
    sha256 = "07hbkbr1qspr7qgzldkaslzc6ripj5zlif12d4fk5j801yhvnxjd";
  };

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

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