diff options
Diffstat (limited to 'pkgs/development/python-modules/pytlv/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pytlv/default.nix | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/pytlv/default.nix b/pkgs/development/python-modules/pytlv/default.nix index d4381f904423..05e002a412c1 100644 --- a/pkgs/development/python-modules/pytlv/default.nix +++ b/pkgs/development/python-modules/pytlv/default.nix @@ -1,8 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, poetry-core -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, }: buildPythonPackage rec { @@ -15,9 +15,7 @@ buildPythonPackage rec { hash = "sha256-btxZ0oQzn1ZpwXihHlg6CduLh8nkerLV7SoFyXzJjVY="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; pythonImportsCheck = [ "pytlv" ]; @@ -25,6 +23,6 @@ buildPythonPackage rec { description = "TLV (tag length lavue) data parser, especially useful for EMV tags parsing"; homepage = "https://github.com/timgabets/pytlv"; license = licenses.lgpl2; - maintainers = with maintainers; [ flokli janik ]; + maintainers = with maintainers; [ flokli ]; }; } |