python312Packages.emv: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-04 10:43:50 +02:00
parent 46a58ebd68
commit 6be65abaa9

View file

@ -1,13 +1,14 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, click
, pyscard
, pycountry
, terminaltables
, pytestCheckHook
, setuptools
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
click,
pyscard,
pycountry,
terminaltables,
pytestCheckHook,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
@ -34,9 +35,7 @@ buildPythonPackage rec {
--replace-fail "terminaltables==3.1.0" "terminaltables"
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
click
@ -45,13 +44,9 @@ buildPythonPackage rec {
terminaltables
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"emv"
];
pythonImportsCheck = [ "emv" ];
meta = with lib; {
description = "Implementation of the EMV chip-and-pin smartcard protocol";