pythonPackages.ifconfig-parser: init at 0.0.5

This commit is contained in:
Atemu 2020-02-18 17:18:29 +01:00 committed by Jon
parent 6ec8687047
commit 9fa218e3a0
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ 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 stdenv.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 ];
};
}

View File

@ -3926,6 +3926,8 @@ in {
ifaddr = callPackage ../development/python-modules/ifaddr { }; ifaddr = callPackage ../development/python-modules/ifaddr { };
ifconfig-parser = callPackage ../development/python-modules/ifconfig-parser { };
imagecorruptions = callPackage ../development/python-modules/imagecorruptions { }; imagecorruptions = callPackage ../development/python-modules/imagecorruptions { };
imageio = callPackage ../development/python-modules/imageio { }; imageio = callPackage ../development/python-modules/imageio { };