python312Packages.ifconfig-parser: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-16 11:46:42 +02:00
parent 4e3c870764
commit 287c7aea99
1 changed files with 8 additions and 12 deletions

View File

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
@ -19,19 +20,14 @@ buildPythonPackage rec {
hash = "sha256-TXa7oQ8AyTIdaSK4SH+RN2bDPtVqNvofPvlqHPKaCx4=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
checkPhase = ''
export PYTHONPATH=$PYTHONPATH:$(pwd)/ifconfigparser:$(pwd)/ifconfigparser/tests
python -m unittest -v test_ifconfig_parser.TestIfconfigParser
'';
pythonImportsCheck = [
"ifconfigparser"
];
pythonImportsCheck = [ "ifconfigparser" ];
meta = with lib; {
description = "Module for parsing raw output of ifconfig";