pytlv: init at 0.71

This commit is contained in:
Florian Klink 2023-08-13 12:20:33 +02:00
parent 8ed712ec90
commit 6d1c5dd1dc
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, setuptools
}:
buildPythonPackage rec {
pname = "pytlv";
version = "0.71";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-btxZ0oQzn1ZpwXihHlg6CduLh8nkerLV7SoFyXzJjVY=";
};
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [ "pytlv" ];
meta = with lib; {
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 ];
};
}

View file

@ -8188,6 +8188,8 @@ self: super: with self; {
pytest-pudb = callPackage ../development/python-modules/pytest-pudb { };
pytlv = callPackage ../development/python-modules/pytlv { };
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
python-creole = callPackage ../development/python-modules/python-creole { };