python312Packages.emv: format with nixfmt
This commit is contained in:
parent
46a58ebd68
commit
6be65abaa9
1 changed files with 14 additions and 19 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue